Overview
//trimblecloud-fileservice/trimblecloud.fileservice.models/Provider
Provider
[JVM]
enum Provider
The cloud provider where the space will be created. Supported values are “aws” and “azure”.
Entries
| AWS | [JVM] AWS |
| AZURE | [JVM] AZURE |
| UNKNOWN | [JVM] UNKNOWN |
Properties
| Name | Summary |
|---|---|
| value | [JVM] val value: String |
Functions
| Name | Summary |
|---|---|
| fromValue | [JVM] open fun fromValue(value: String): Provider |
| isKnown | [JVM] open fun isKnown(): Boolean Checks if this provider is a recognized/known provider. |
| valueOf | [JVM] open fun valueOf(name: String): Provider Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.) |
| values | [JVM] open fun values(): Array<Provider> Returns an array containing the constants of this enum type, in the order they’re declared. This method may be used to iterate over the constants. |