oci.Oda.OdaPrivateEndpointAttachment
Explore with Pulumi AI
This resource provides the Oda Private Endpoint Attachment resource in Oracle Cloud Infrastructure Digital Assistant service.
Starts an asynchronous job to create an ODA Private Endpoint Attachment.
To monitor the status of the job, take the opc-work-request-id
response
header value and use it to call GET /workRequests/{workRequestID}
.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testOdaPrivateEndpointAttachment = new oci.oda.OdaPrivateEndpointAttachment("test_oda_private_endpoint_attachment", {
odaInstanceId: testOdaInstance.id,
odaPrivateEndpointId: testOdaPrivateEndpoint.id,
});
import pulumi
import pulumi_oci as oci
test_oda_private_endpoint_attachment = oci.oda.OdaPrivateEndpointAttachment("test_oda_private_endpoint_attachment",
oda_instance_id=test_oda_instance["id"],
oda_private_endpoint_id=test_oda_private_endpoint["id"])
package main
import (
"github.com/pulumi/pulumi-oci/sdk/go/oci/Oda"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := Oda.NewOdaPrivateEndpointAttachment(ctx, "test_oda_private_endpoint_attachment", &Oda.OdaPrivateEndpointAttachmentArgs{
OdaInstanceId: pulumi.Any(testOdaInstance.Id),
OdaPrivateEndpointId: pulumi.Any(testOdaPrivateEndpoint.Id),
})
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 testOdaPrivateEndpointAttachment = new Oci.Oda.OdaPrivateEndpointAttachment("test_oda_private_endpoint_attachment", new()
{
OdaInstanceId = testOdaInstance.Id,
OdaPrivateEndpointId = testOdaPrivateEndpoint.Id,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Oda.OdaPrivateEndpointAttachment;
import com.pulumi.oci.Oda.OdaPrivateEndpointAttachmentArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var testOdaPrivateEndpointAttachment = new OdaPrivateEndpointAttachment("testOdaPrivateEndpointAttachment", OdaPrivateEndpointAttachmentArgs.builder()
.odaInstanceId(testOdaInstance.id())
.odaPrivateEndpointId(testOdaPrivateEndpoint.id())
.build());
}
}
resources:
testOdaPrivateEndpointAttachment:
type: oci:Oda:OdaPrivateEndpointAttachment
name: test_oda_private_endpoint_attachment
properties:
odaInstanceId: ${testOdaInstance.id}
odaPrivateEndpointId: ${testOdaPrivateEndpoint.id}
Create OdaPrivateEndpointAttachment Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new OdaPrivateEndpointAttachment(name: string, args: OdaPrivateEndpointAttachmentArgs, opts?: CustomResourceOptions);
@overload
def OdaPrivateEndpointAttachment(resource_name: str,
args: OdaPrivateEndpointAttachmentArgs,
opts: Optional[ResourceOptions] = None)
@overload
def OdaPrivateEndpointAttachment(resource_name: str,
opts: Optional[ResourceOptions] = None,
oda_instance_id: Optional[str] = None,
oda_private_endpoint_id: Optional[str] = None)
func NewOdaPrivateEndpointAttachment(ctx *Context, name string, args OdaPrivateEndpointAttachmentArgs, opts ...ResourceOption) (*OdaPrivateEndpointAttachment, error)
public OdaPrivateEndpointAttachment(string name, OdaPrivateEndpointAttachmentArgs args, CustomResourceOptions? opts = null)
public OdaPrivateEndpointAttachment(String name, OdaPrivateEndpointAttachmentArgs args)
public OdaPrivateEndpointAttachment(String name, OdaPrivateEndpointAttachmentArgs args, CustomResourceOptions options)
type: oci:Oda:OdaPrivateEndpointAttachment
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args OdaPrivateEndpointAttachmentArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args OdaPrivateEndpointAttachmentArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args OdaPrivateEndpointAttachmentArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args OdaPrivateEndpointAttachmentArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args OdaPrivateEndpointAttachmentArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var odaPrivateEndpointAttachmentResource = new Oci.Oda.OdaPrivateEndpointAttachment("odaPrivateEndpointAttachmentResource", new()
{
OdaInstanceId = "string",
OdaPrivateEndpointId = "string",
});
example, err := Oda.NewOdaPrivateEndpointAttachment(ctx, "odaPrivateEndpointAttachmentResource", &Oda.OdaPrivateEndpointAttachmentArgs{
OdaInstanceId: pulumi.String("string"),
OdaPrivateEndpointId: pulumi.String("string"),
})
var odaPrivateEndpointAttachmentResource = new OdaPrivateEndpointAttachment("odaPrivateEndpointAttachmentResource", OdaPrivateEndpointAttachmentArgs.builder()
.odaInstanceId("string")
.odaPrivateEndpointId("string")
.build());
oda_private_endpoint_attachment_resource = oci.oda.OdaPrivateEndpointAttachment("odaPrivateEndpointAttachmentResource",
oda_instance_id="string",
oda_private_endpoint_id="string")
const odaPrivateEndpointAttachmentResource = new oci.oda.OdaPrivateEndpointAttachment("odaPrivateEndpointAttachmentResource", {
odaInstanceId: "string",
odaPrivateEndpointId: "string",
});
type: oci:Oda:OdaPrivateEndpointAttachment
properties:
odaInstanceId: string
odaPrivateEndpointId: string
OdaPrivateEndpointAttachment Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The OdaPrivateEndpointAttachment resource accepts the following input properties:
- Oda
Instance stringId - The OCID of the attached ODA Instance.
- Oda
Private stringEndpoint Id The OCID of the ODA Private Endpoint.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Oda
Instance stringId - The OCID of the attached ODA Instance.
- Oda
Private stringEndpoint Id The OCID of the ODA Private Endpoint.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- oda
Instance StringId - The OCID of the attached ODA Instance.
- oda
Private StringEndpoint Id The OCID of the ODA Private Endpoint.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- oda
Instance stringId - The OCID of the attached ODA Instance.
- oda
Private stringEndpoint Id The OCID of the ODA Private Endpoint.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- oda_
instance_ strid - The OCID of the attached ODA Instance.
- oda_
private_ strendpoint_ id The OCID of the ODA Private Endpoint.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- oda
Instance StringId - The OCID of the attached ODA Instance.
- oda
Private StringEndpoint Id The OCID of the ODA Private Endpoint.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
Outputs
All input properties are implicitly available as output properties. Additionally, the OdaPrivateEndpointAttachment resource produces the following output properties:
- Compartment
Id string - The OCID of the compartment that the ODA private endpoint attachment belongs to.
- Id string
- The provider-assigned unique ID for this managed resource.
- State string
- The current state of the ODA Private Endpoint attachment.
- Time
Created string - When the resource was created. A date-time string as described in RFC 3339, section 14.29.
- Time
Updated string - When the resource was last updated. A date-time string as described in RFC 3339, section 14.29.
- Compartment
Id string - The OCID of the compartment that the ODA private endpoint attachment belongs to.
- Id string
- The provider-assigned unique ID for this managed resource.
- State string
- The current state of the ODA Private Endpoint attachment.
- Time
Created string - When the resource was created. A date-time string as described in RFC 3339, section 14.29.
- Time
Updated string - When the resource was last updated. A date-time string as described in RFC 3339, section 14.29.
- compartment
Id String - The OCID of the compartment that the ODA private endpoint attachment belongs to.
- id String
- The provider-assigned unique ID for this managed resource.
- state String
- The current state of the ODA Private Endpoint attachment.
- time
Created String - When the resource was created. A date-time string as described in RFC 3339, section 14.29.
- time
Updated String - When the resource was last updated. A date-time string as described in RFC 3339, section 14.29.
- compartment
Id string - The OCID of the compartment that the ODA private endpoint attachment belongs to.
- id string
- The provider-assigned unique ID for this managed resource.
- state string
- The current state of the ODA Private Endpoint attachment.
- time
Created string - When the resource was created. A date-time string as described in RFC 3339, section 14.29.
- time
Updated string - When the resource was last updated. A date-time string as described in RFC 3339, section 14.29.
- compartment_
id str - The OCID of the compartment that the ODA private endpoint attachment belongs to.
- id str
- The provider-assigned unique ID for this managed resource.
- state str
- The current state of the ODA Private Endpoint attachment.
- time_
created str - When the resource was created. A date-time string as described in RFC 3339, section 14.29.
- time_
updated str - When the resource was last updated. A date-time string as described in RFC 3339, section 14.29.
- compartment
Id String - The OCID of the compartment that the ODA private endpoint attachment belongs to.
- id String
- The provider-assigned unique ID for this managed resource.
- state String
- The current state of the ODA Private Endpoint attachment.
- time
Created String - When the resource was created. A date-time string as described in RFC 3339, section 14.29.
- time
Updated String - When the resource was last updated. A date-time string as described in RFC 3339, section 14.29.
Look up Existing OdaPrivateEndpointAttachment Resource
Get an existing OdaPrivateEndpointAttachment resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: OdaPrivateEndpointAttachmentState, opts?: CustomResourceOptions): OdaPrivateEndpointAttachment
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
oda_instance_id: Optional[str] = None,
oda_private_endpoint_id: Optional[str] = None,
state: Optional[str] = None,
time_created: Optional[str] = None,
time_updated: Optional[str] = None) -> OdaPrivateEndpointAttachment
func GetOdaPrivateEndpointAttachment(ctx *Context, name string, id IDInput, state *OdaPrivateEndpointAttachmentState, opts ...ResourceOption) (*OdaPrivateEndpointAttachment, error)
public static OdaPrivateEndpointAttachment Get(string name, Input<string> id, OdaPrivateEndpointAttachmentState? state, CustomResourceOptions? opts = null)
public static OdaPrivateEndpointAttachment get(String name, Output<String> id, OdaPrivateEndpointAttachmentState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Compartment
Id string - The OCID of the compartment that the ODA private endpoint attachment belongs to.
- Oda
Instance stringId - The OCID of the attached ODA Instance.
- Oda
Private stringEndpoint Id The OCID of the ODA Private Endpoint.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- State string
- The current state of the ODA Private Endpoint attachment.
- Time
Created string - When the resource was created. A date-time string as described in RFC 3339, section 14.29.
- Time
Updated string - When the resource was last updated. A date-time string as described in RFC 3339, section 14.29.
- Compartment
Id string - The OCID of the compartment that the ODA private endpoint attachment belongs to.
- Oda
Instance stringId - The OCID of the attached ODA Instance.
- Oda
Private stringEndpoint Id The OCID of the ODA Private Endpoint.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- State string
- The current state of the ODA Private Endpoint attachment.
- Time
Created string - When the resource was created. A date-time string as described in RFC 3339, section 14.29.
- Time
Updated string - When the resource was last updated. A date-time string as described in RFC 3339, section 14.29.
- compartment
Id String - The OCID of the compartment that the ODA private endpoint attachment belongs to.
- oda
Instance StringId - The OCID of the attached ODA Instance.
- oda
Private StringEndpoint Id The OCID of the ODA Private Endpoint.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- state String
- The current state of the ODA Private Endpoint attachment.
- time
Created String - When the resource was created. A date-time string as described in RFC 3339, section 14.29.
- time
Updated String - When the resource was last updated. A date-time string as described in RFC 3339, section 14.29.
- compartment
Id string - The OCID of the compartment that the ODA private endpoint attachment belongs to.
- oda
Instance stringId - The OCID of the attached ODA Instance.
- oda
Private stringEndpoint Id The OCID of the ODA Private Endpoint.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- state string
- The current state of the ODA Private Endpoint attachment.
- time
Created string - When the resource was created. A date-time string as described in RFC 3339, section 14.29.
- time
Updated string - When the resource was last updated. A date-time string as described in RFC 3339, section 14.29.
- compartment_
id str - The OCID of the compartment that the ODA private endpoint attachment belongs to.
- oda_
instance_ strid - The OCID of the attached ODA Instance.
- oda_
private_ strendpoint_ id The OCID of the ODA Private Endpoint.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- state str
- The current state of the ODA Private Endpoint attachment.
- time_
created str - When the resource was created. A date-time string as described in RFC 3339, section 14.29.
- time_
updated str - When the resource was last updated. A date-time string as described in RFC 3339, section 14.29.
- compartment
Id String - The OCID of the compartment that the ODA private endpoint attachment belongs to.
- oda
Instance StringId - The OCID of the attached ODA Instance.
- oda
Private StringEndpoint Id The OCID of the ODA Private Endpoint.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- state String
- The current state of the ODA Private Endpoint attachment.
- time
Created String - When the resource was created. A date-time string as described in RFC 3339, section 14.29.
- time
Updated String - When the resource was last updated. A date-time string as described in RFC 3339, section 14.29.
Import
OdaPrivateEndpointAttachments can be imported using the id
, e.g.
$ pulumi import oci:Oda/odaPrivateEndpointAttachment:OdaPrivateEndpointAttachment test_oda_private_endpoint_attachment "id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.