Class PsaServiceSummary
An OCI service summary, that will be used as a catalog for Private Service Access.
Inherited Members
Namespace: Oci.PsaService.Models
Assembly: OCI.DotNetSDK.Psa.dll
Syntax
public class PsaServiceSummary
Properties
Description
Declaration
[JsonProperty(PropertyName = "description")]
public string Description { get; set; }
Property Value
| Type | Description |
|---|---|
| string | A description of the OCI service. |
DisplayName
Declaration
[Required(ErrorMessage = "DisplayName is required.")]
[JsonProperty(PropertyName = "displayName")]
public string DisplayName { get; set; }
Property Value
| Type | Description |
|---|---|
| string | A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. |
Remarks
Required
Fqdns
Declaration
[Required(ErrorMessage = "Fqdns is required.")]
[JsonProperty(PropertyName = "fqdns")]
public List<string> Fqdns { get; set; }
Property Value
| Type | Description |
|---|---|
| List<string> | The public facing service FQDNs, which are going to be used to access the service.
|
Remarks
Required
Id
Declaration
[Required(ErrorMessage = "Id is required.")]
[JsonProperty(PropertyName = "id")]
public string Id { get; set; }
Property Value
| Type | Description |
|---|---|
| string | A unique OCI service identifier.
|
Remarks
Required
IsV6Enabled
Declaration
[JsonProperty(PropertyName = "isV6Enabled")]
public bool? IsV6Enabled { get; set; }
Property Value
| Type | Description |
|---|---|
| bool? | This optional field will indicate that whether service is IPv6 enabled. |