Workspace Reseller API . resellernotify

Instance Methods

close()

Close httplib2 connections.

getwatchdetails()

Returns all the details of the watch corresponding to the reseller.

register(serviceAccountEmailAddress=None)

Registers a Reseller for receiving notifications.

unregister(serviceAccountEmailAddress=None)

Unregisters a Reseller for receiving notifications.

Method Details

close()
Close httplib2 connections.
getwatchdetails()
Returns all the details of the watch corresponding to the reseller.

Args:

Returns:
  An object of the form:

    { # JSON template for resellernotify getwatchdetails response.
    "topicName": "A String", # Topic name of the PubSub
    "serviceAccountEmailAddresses": [ # List of registered service accounts.
      "A String",
    ],
  }
register(serviceAccountEmailAddress=None)
Registers a Reseller for receiving notifications.

Args:
  serviceAccountEmailAddress: string, The service account which will own the created Cloud-PubSub topic.

Returns:
  An object of the form:

    { # JSON template for resellernotify response.
    "topicName": "A String", # Topic name of the PubSub
  }
unregister(serviceAccountEmailAddress=None)
Unregisters a Reseller for receiving notifications.

Args:
  serviceAccountEmailAddress: string, The service account which owns the Cloud-PubSub topic.

Returns:
  An object of the form:

    { # JSON template for resellernotify response.
    "topicName": "A String", # Topic name of the PubSub
  }