import * as pulumi from "@pulumi/pulumi"; /** * This data source provides the list of Private Service Access in Oracle Cloud Infrastructure Psa service. * * List the private service accesses in the specified compartment. You can optionally filter the list by * specifying the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a subnet in the cunsumer's VCN. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testPrivateServiceAccesses = oci.oci.getPsaPrivateServiceAccesses({ * compartmentId: compartmentId, * displayName: privateServiceAccesDisplayName, * id: privateServiceAccesId, * serviceId: testPsaService.id, * state: privateServiceAccesState, * vcnId: testVcn.id, * }); * ``` */ export declare function getPsaPrivateServiceAccess(args: GetPsaPrivateServiceAccessArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getPsaPrivateServiceAccess. */ export interface GetPsaPrivateServiceAccessArgs { privateServiceAccessId: string; } /** * A collection of values returned by getPsaPrivateServiceAccess. */ export interface GetPsaPrivateServiceAccessResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains the private service access. */ readonly compartmentId: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}` */ readonly definedTags: { [key: string]: string; }; /** * A description of this private service access. */ readonly description: string; /** * A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. */ readonly displayName: string; /** * The private service access FQDNs, which are going to be used to access the service. Example: `xyz.oraclecloud.com` */ readonly fqdns: string[]; /** * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ readonly freeformTags: { [key: string]: string; }; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the private service access. */ readonly id: string; /** * The private IPv4 address (in the consumer's VCN) that represents the access point for the associated service. */ readonly ipv4ip: string; /** * A list of the OCIDs of the network security groups that the private service access's VNIC belongs to. For more information about NSGs, see [NetworkSecurityGroup](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/NetworkSecurityGroup/). */ readonly nsgIds: string[]; readonly privateServiceAccessId: string; /** * [Security attributes](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/zpr-artifacts.htm#security-attributes) are labels for a resource that can be referenced in a [Zero Trust Packet Routing](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/overview.htm) (ZPR) policy to control access to ZPR-supported resources. Example: `{"Oracle-DataSecurity-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit"}}}` */ readonly securityAttributes: { [key: string]: string; }; /** * A unique service identifier for which the private service access was created. */ readonly serviceId: string; /** * The private service access's current lifecycle state. */ readonly state: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet that the private service access belongs to. */ readonly subnetId: string; /** * System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * The date and time the private service access was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z` */ readonly timeCreated: string; /** * The date and time the PrivateServiceAccess was updated, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z` */ readonly timeUpdated: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VCN that the private service access belongs to. */ readonly vcnId: string; /** * An [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the private service access's VNIC, which resides in the private service access's VCN . */ readonly vnicId: string; } /** * This data source provides the list of Private Service Access in Oracle Cloud Infrastructure Psa service. * * List the private service accesses in the specified compartment. You can optionally filter the list by * specifying the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a subnet in the cunsumer's VCN. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testPrivateServiceAccesses = oci.oci.getPsaPrivateServiceAccesses({ * compartmentId: compartmentId, * displayName: privateServiceAccesDisplayName, * id: privateServiceAccesId, * serviceId: testPsaService.id, * state: privateServiceAccesState, * vcnId: testVcn.id, * }); * ``` */ export declare function getPsaPrivateServiceAccessOutput(args: GetPsaPrivateServiceAccessOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getPsaPrivateServiceAccess. */ export interface GetPsaPrivateServiceAccessOutputArgs { privateServiceAccessId: pulumi.Input; } //# sourceMappingURL=getPsaPrivateServiceAccess.d.ts.map