Show / Hide Table of Contents

Class ConfigureDistributedDatabaseGsmsDetails

Details of the request to configure new global service manager(GSM) instances for the distributed database.

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

Properties

IsLatestGsmImage

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

Flag to indicate if new global service manager(GSM) instances shall use latest image or re-use image used by existing GSM instances.

Remarks

Required

OldGsmNames

Declaration
[Required(ErrorMessage = "OldGsmNames is required.")]
[JsonProperty(PropertyName = "oldGsmNames")]
public List<string> OldGsmNames { get; set; }
Property Value
Type Description
List<string>

Names of old global service manager(GSM) instances corresponding to which new GSM instances need to be configured.

Remarks

Required

In this article
Back to top