Show / Hide Table of Contents

Class ServiceEnvironmentEndPointOverview

An overview of service environment endpoints.

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

Properties

Description

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

Description of the environment link

EnvironmentType

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

Service environment endpoint type.

Remarks

Required

Url

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

Service environment instance URL.

Remarks

Required

In this article
Back to top