AssetManagerConfiguration
public struct AssetManagerConfiguration
Configuration for AssetManager
-
Constructs an instance of the configuration.
Declaration
Swift
public init(instanceId: String, assetServiceURL: URL? = URL(string: "https://predix-asset.run.aws-usw02-pr.ice.predix.io/"))
Parameters
instanceId
The instance id for the Asset Service you are targeting (
VCAP_SERVICES
/predix-asset-dev
asinstanceId
).assetServiceURL
The URL to your Asset Service instance. Default: https://predix-asset.run.aws-usw02-pr.ice.predix.io/
-
Asset instance id for a particular org. It should be listed under the
VCAP_SERVICES
/predix-asset-dev
asinstanceId
. It will be used asPredix-Zone-Id
paramter while making calls to the backend (commonly known as tenantId).Declaration
Swift
public var instanceId: String
-
Asset URL where all asset information is stored. It should be listed under the
VCAP_SERVICES
/predix-asset-dev
asuri
.Declaration
Swift
public var assetServiceURL: URL?