AutoScalingCredentials

public class AutoScalingCredentials

Contains the credentials for an Auto-Scaling service instance. You will typically receive an instance of this type through cloudEnv.getAutoScalingCredentials(name: String).

Reference Auto-Scaling.

  • The username from the Auto-Scaling service instance credentials.

    Declaration

    Swift

    public let username: String
  • The password from the Auto-Scaling service instance credentials.

    Declaration

    Swift

    public let password: String
  • The App ID from the Auto-Scaling service instance credentials.

    Declaration

    Swift

    public let appID: String
  • url

    The URL from the Auto-Scaling service instance credentials.

    Declaration

    Swift

    public let url: String
  • The service ID from the Auto-Scaling service instance credentials.

    Declaration

    Swift

    public let serviceID: String
  • The apiURL from the Auto-Scaling service instance credentials.

    Declaration

    Swift

    public let apiURL: String
  • Initializes an instance of the Auto-Scaling service credentials.

    Declaration

    Swift

    public init (
      username:   String,
      password:   String,
      appID:      String,
      url:        String,
      serviceID:  String,
      apiURL:     String )