Show / Hide Table of Contents

Class ExecuteBootstrapScriptDetails

The information about the bootstrap script to be executed.

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

Properties

BootstrapScriptUrl

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

pre-authenticated URL of the bootstrap script in Object Store that can be downloaded and executed.

ClusterAdminPassword

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

Base-64 encoded password for the cluster admin user.

Remarks

Required

In this article
Back to top