Show / Hide Table of Contents

Class CreateOdaPrivateEndpointAttachmentRequest

Inheritance
object
CreateOdaPrivateEndpointAttachmentRequest
Implements
IOciRequest
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.OdaService.Requests
Assembly: OCI.DotNetSDK.Oda.dll
Syntax
public class CreateOdaPrivateEndpointAttachmentRequest : IOciRequest
Examples

Click here to see an example of how to use CreateOdaPrivateEndpointAttachment request.

Properties

CreateOdaPrivateEndpointAttachmentDetails

Declaration
[Required(ErrorMessage = "CreateOdaPrivateEndpointAttachmentDetails is required.")]
[HttpConverter(TargetEnum.Body)]
public CreateOdaPrivateEndpointAttachmentDetails CreateOdaPrivateEndpointAttachmentDetails { get; set; }
Property Value
Type Description
CreateOdaPrivateEndpointAttachmentDetails

Details for the new ODA Private Endpoint Attachment.

Remarks

Required

OpcRequestId

Declaration
[HttpConverter(TargetEnum.Header, "opc-request-id")]
public string OpcRequestId { get; set; }
Property Value
Type Description
string

The client request ID for tracing. This value is included in the opc-request-id response header.

OpcRetryToken

Declaration
[HttpConverter(TargetEnum.Header, "opc-retry-token")]
public string OpcRetryToken { get; set; }
Property Value
Type Description
string

A token that uniquely identifies a request so that you can retry the request if there's a timeout or server error without the risk of executing that same action again.
Retry tokens expire after 24 hours, but they can become invalid before then if there are conflicting operations. For example, if an instance was deleted and purged from the system, then the service might reject a retry of the original creation request.

Implements

IOciRequest
In this article
Back to top