Show / Hide Table of Contents

Class GetServiceAttachmentRequest

Inheritance
object
GetServiceAttachmentRequest
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.FusionappsService.Requests
Assembly: OCI.DotNetSDK.Fusionapps.dll
Syntax
public class GetServiceAttachmentRequest : IOciRequest
Examples

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

Properties

FusionEnvironmentId

Declaration
[Required(ErrorMessage = "FusionEnvironmentId is required.")]
[HttpConverter(TargetEnum.Path, "fusionEnvironmentId")]
public string FusionEnvironmentId { get; set; }
Property Value
Type Description
string

unique FusionEnvironment identifier

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.

ServiceAttachmentId

Declaration
[Required(ErrorMessage = "ServiceAttachmentId is required.")]
[HttpConverter(TargetEnum.Path, "serviceAttachmentId")]
public string ServiceAttachmentId { get; set; }
Property Value
Type Description
string

OCID of the Service Attachment

Remarks

Required

Implements

IOciRequest
In this article
Back to top