Module Values.MemberFabricConfigurationSource

Configuration properties for Hyperledger Fabric for a member in a Managed Blockchain network that is using the Hyperledger Fabric framework.

Sourcetype nonrec t = {
  1. adminUsername : UsernameString.t;
    (*

    The user name for the member's initial administrative user.

    *)
  2. adminPassword : PasswordString.t;
    (*

    The password for the member's initial administrative user. The AdminPassword must be at least 8 characters long and no more than 32 characters. It must contain at least one uppercase letter, one lowercase letter, and one digit. It cannot have a single quotation mark (‘), a double quotation marks (“), a forward slash(/), a backward slash(\), @, or a space.

    *)
}
Sourceval context_ : string
Sourceval make : adminUsername:UsernameString.t -> adminPassword:PasswordString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of UsernameString.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t