Show / Hide Table of Contents

Class ServiceAttachment

Description of ServiceAttachment.

Inheritance
object
ServiceAttachment
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 ServiceAttachment

Properties

CompartmentId

Declaration
[JsonProperty(PropertyName = "compartmentId")]
public string CompartmentId { get; set; }
Property Value
Type Description
string

Compartment Identifier

DefinedTags

Declaration
[JsonProperty(PropertyName = "definedTags")]
public Dictionary<string, Dictionary<string, object>> DefinedTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace": {"bar-key": "value"}}

DisplayName

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

Service Attachment Display name, can be renamed

Remarks

Required

FreeformTags

Declaration
[JsonProperty(PropertyName = "freeformTags")]
public Dictionary<string, string> FreeformTags { get; set; }
Property Value
Type Description
Dictionary<string, string>

Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

Id

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

Unique identifier that is immutable on creation

Remarks

Required

IsSkuBased

Declaration
[Required(ErrorMessage = "IsSkuBased is required.")]
[JsonProperty(PropertyName = "isSkuBased")]
public bool? IsSkuBased { get; set; }
Property Value
Type Description
bool?

Whether this service is provisioned due to the customer being subscribed to a specific SKU

Remarks

Required

LifecycleState

Declaration
[Required(ErrorMessage = "LifecycleState is required.")]
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ServiceAttachment.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
ServiceAttachment.LifecycleStateEnum?

The current state of the ServiceInstance.

Remarks

Required

ServiceInstanceId

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

The ID of the service instance created that can be used to identify this on the service control plane

ServiceInstanceType

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

Type of the serviceInstance.

Remarks

Required

ServiceUrl

Declaration
[JsonProperty(PropertyName = "serviceUrl")]
public string ServiceUrl { get; set; }
Property Value
Type Description
string

Public URL

TimeCreated

Declaration
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type Description
DateTime?

The time the the ServiceInstance was created. An RFC3339 formatted datetime string

TimeUpdated

Declaration
[JsonProperty(PropertyName = "timeUpdated")]
public DateTime? TimeUpdated { get; set; }
Property Value
Type Description
DateTime?

The time the ServiceInstance was updated. An RFC3339 formatted datetime string

In this article
Back to top