Skip to content
This repository has been archived by the owner on Jan 21, 2022. It is now read-only.

Resource Provider Scenarios

Hristo Iliev edited this page Apr 6, 2017 · 21 revisions

This page lists Resource Provider scenarios and the recommended usage documents to use:

Service provider

I am a service provider and like to meter usage of my service. The service is a CF service which is consumed via Service Broker API.

Agents

Resource provider runs in organization services and space mongodb. Provides mongodb databases as CF service instances.

Consumer runs as the emporiumify application in organization shop, space cart. It stores items added in the cart in different mongodb collections, all in the same database.

Usage document

{
  "start": 1396421450000,
  "end": 1396421451000,
  "organization_id": "us-south:54257f98-83f0-4eca-ae04-9ea35277a538",
  "space_id": "d98b5916-3c77-44b9-ac12-04456df23eae",
  "consumer_id": "app:d98b5916-3c77-44b9-ac12-045678edabae",
  "resource_id": "mongodb",
  "plan_id": "basic",
  "resource_instance_id": "d98b5916-3c77-44b9-ac12-04d61c7a4eae",
  "measured_usage": [
    {
      "measure": "storage",
      "quantity": 145
    }
  ]
}

Fields:

  • "organization_id": "us-south:54257f98-83f0-4eca-ae04-9ea35277a538"

    Can be broken into:

    • us-south: datacenter or CF installation name. The schema is optional
    • 54257f98-83f0-4eca-ae04-9ea35277a538: GUID of the consumer's shop organization
  • "space_id": "d98b5916-3c77-44b9-ac12-04456df23eae"

    GUID of the consumer's cart space (under shop organization)

  • "consumer_id": "app:d98b5916-3c77-44b9-ac12-045678edabae"

    GUID of the consumer's emporiumify application

  • "resource_id": "mongodb"

    MongoDB Resource Provider ID

  • "plan_id": "basic"

    Resource Provider (MongoDB) plan ID

  • "resource_instance_id": "d98b5916-3c77-44b9-ac12-04d61c7a4eae"

    ID of the MongoDB database (or service instance) created for us.

  • "measured_usage"

    KiB of storage used in the database

Multi-tenant application

I like to meter data of my multi-tenant application. Application is called by a consumer tenant who does not necessarily has an org/space. Consumer calls app with a tenant-specific URL, API key or OAuth scope to identify itself.

Agents

Resource provider runs as the emporiumify application in organization shop, space cart. It provides marketplace services to end-users.

Consumers access the emporiumify application to add items to the marketplace so end-users can add them to cart and buy them.

Usage document

{
  "start": 1396421450000,
  "end": 1396421451000,
  "organization_id": "us-south:54257f98-83f0-4eca-ae04-9ea35277a538",
  "space_id": "d98b5916-3c77-44b9-ac12-04456df23eae",
  "consumer_id": "app:d98b5916-3c77-44b9-ac12-045678edabae",
  "resource_id": "emporiumify",
  "plan_id": "shared",
  "resource_instance_id": "customer:d98b5916-3c77-44b9-ac12-04d61c7a4eae",
  "measured_usage": [
    {
      "measure": "storage",
      "quantity": 145
    }
  ]
}

Fields:

  • "organization_id": "us-south:54257f98-83f0-4eca-ae04-9ea35277a538"

    Can be broken into:

    • us-south: datacenter or CF installation name. The schema is optional
    • 54257f98-83f0-4eca-ae04-9ea35277a538: GUID of the consumer's shop organization
  • "space_id": "d98b5916-3c77-44b9-ac12-04456df23eae"

    GUID of the consumer's cart space (under shop organization)

  • "consumer_id": "app:d98b5916-3c77-44b9-ac12-045678edabae"

    GUID of the consumer's emporiumify application (under shop/cart)

  • "resource_id": "emporiumify"

    Our emporiumify Abacus resource provider ID

  • "plan_id": "shared"

    emporiumify plan id. Used to identify which plan to use

  • "resource_instance_id": "customer:d98b5916-3c77-44b9-ac12-04d61c7a4eae"

    ID of the emporiumify app customer.

Multi-tenant Service Provider

Multi-tenant application, that is also exposed as a service.

Agents

Resource provider runs as the emporiumify application in organization shop, space cart. It provides:

  • marketplace services to end-users
  • service instances (and REST API) to applications in CF via Service Broker API

Consumers:

  • access the emporiumify application to add items to the marketplace so end-users can add them to cart and buy them
  • creates service instance in organization extensions, space thirdparty and binds it to app amazon. Then it uses the REST API of emporiumify

Usage document

The emporiumify Resource Provider must submit two kinds of documents based on the user:

Consumers

Same as Multi-tenant app.

Service instance

Similar to Resource provider:

{
  "start": 1396421450000,
  "end": 1396421451000,
  "organization_id": "3612bfbe-a521-4a95-84e0-18a04cc42c5e",
  "space_id": "8140eda1-bdc6-40ff-8dce-91248614dca8",
  "consumer_id": "app:8343d7b6-a3f7-433b-8461-28512d333282",
  "resource_id": "emporiumify",
  "plan_id": "broker",
  "resource_instance_id": "app:8343d7b6-a3f7-433b-8461-28512d333282",
  "measured_usage": [
    {
      "measure": "storage",
      "quantity": 145
    }
  ]
}

Fields:

  • "organization_id": "3612bfbe-a521-4a95-84e0-18a04cc42c5e"

    GUID of the extensions organization.

  • "space_id": "8140eda1-bdc6-40ff-8dce-91248614dca8"

    GUID of the thirdparty space (under extensions organization)

  • "consumer_id": "app:8343d7b6-a3f7-433b-8461-28512d333282"

    GUID of the consumer's amazon application (under extensions/thirdparty)

  • "resource_id": "emporiumify"

    Our emporiumify Abacus resource provider ID

  • "plan_id": "shared"

    broker plan id. Used to identify a new plan that takes into account the broker use case

  • "resource_instance_id": "app:8343d7b6-a3f7-433b-8461-28512d333282"

    ID of the amazon app that uses our emporiumify service.

Clone this wiki locally