Show / Hide Table of Contents

Class ServiceEnvironmentSummary

Summary of service environment details.

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

Properties

CompartmentId

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

The OCID for the compartment.

Remarks

Required

ConsoleUrl

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

The URL for the console.

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. For more information, see Resource Tags.
Example: {"Operations": {"CostCenter": "42"}}

FreeformTags

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

Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags.
Example: {"CostCenter": "42"}

Id

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

Unqiue identifier for the entitlement related to the environment.
Note: Not an OCID.

Remarks

Required

ServiceDefinition

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

Required

ServiceEnvironmentEndpoints

Declaration
[JsonProperty(PropertyName = "serviceEnvironmentEndpoints")]
public List<ServiceEnvironmentEndPointOverview> ServiceEnvironmentEndpoints { get; set; }
Property Value
Type Description
List<ServiceEnvironmentEndPointOverview>

Array of service environment end points.

Status

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

Status of the entitlement registration for the service.

Remarks

Required

SubscriptionId

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

The unique subscription ID associated with the service environment ID.
Note: Not an OCID.

Remarks

Required

In this article
Back to top