Show / Hide Table of Contents

Class CreateServiceAttachmentDetails

Information about the service attachment to be created.

Inheritance
object
CreateServiceAttachmentDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.FusionappsService.Models
Assembly: OCI.DotNetSDK.Fusionapps.dll
Syntax
public class CreateServiceAttachmentDetails

Properties

ServiceInstanceId

Declaration
[Required(ErrorMessage = "ServiceInstanceId is required.")]
[JsonProperty(PropertyName = "serviceInstanceId")]
public string ServiceInstanceId { get; set; }
Property Value
Type Description
string

The service instance OCID of the instance being attached

Remarks

Required

ServiceInstanceType

Declaration
[Required(ErrorMessage = "ServiceInstanceType is required.")]
[JsonProperty(PropertyName = "serviceInstanceType")]
[JsonConverter(typeof(StringEnumConverter))]
public ServiceAttachment.ServiceInstanceTypeEnum? ServiceInstanceType { get; set; }
Property Value
Type Description
ServiceAttachment.ServiceInstanceTypeEnum?

Type of the ServiceInstance being attached.

Remarks

Required

In this article
Back to top