Skip to main content

VMware Workspace One Source

vmware-workspace-one-logo

VMware Workspace ONE is a comprehensive digital workspace platform that combines unified endpoint management, access management, and application management capabilities. It enables organizations to securely deliver and manage any app on any device, providing a seamless and productive user experience. Workspace ONE empowers IT teams to simplify device management, enhance security, and increase workforce productivity through a unified and integrated process.

The VMware Workspace One source collects the device details and corresponding list of applications for the devices from the VMware Workspace One platform and send them to Sumo Logic.

Data collected

Polling IntervalData
24 hoursDevices
24 hoursDevice Applications

Setup

Vendor configuration

The VMware Workspace One source supports O-Auth-based authentication and requires you to provide the Endpoint URL, Auth URL, Client ID, and Client Secret key to access the data.

Endpoint URL

Endpoint URL will be the domain URL of the VMware Workspace console. For example, https://as135.awmdm.com.

Auth URL

The following table contains the Auth URLs based on the location of your VMware Workspace One API account:

RegionAuth URL
All UAT Environmenthttps://uat.uemauth.vmwservices.com/connect/token
Australiahttps://apac.uemauth.vmwservices.com/connect/token
Canadahttps://na.uemauth.vmwservices.com/connect/token
Germanyhttps://emea.uemauth.vmwservices.com/connect/token
Hong Konghttps://apac.uemauth.vmwservices.com/connect/token
Indiahttps://apac.uemauth.vmwservices.com/connect/token
Japanhttps://apac.uemauth.vmwservices.com/connect/token
Singaporehttps://apac.uemauth.vmwservices.com/connect/token
United Kingdomhttps://emea.uemauth.vmwservices.com/connect/token
United Stateshttps://na.uemauth.vmwservices.com/connect/token

Client ID and Client Secret

To generate the Client ID and Client Secret, refer to the Create an OAuth Client to Use for API Commands (SaaS) section.

Source configuration

When you create a VMware Workspace One Source, you add it to a Hosted Collector. Before creating the Source, identify the Hosted Collector you want to use or create a new Hosted Collector. For instructions, see Configure a Hosted Collector and Source.

To configure a VMware Workspace One Source:

  1. Classic UI. In the main Sumo Logic menu, select Manage Data > Collection > Collection.
    New UI. In the Sumo Logic top menu select Configuration, and then under Data Collection select Collection. You can also click the Go To... menu at the top of the screen and select Collection.
  2. On the Collection page, click Add Source next to a Hosted Collector.
  3. Search for and select VMware Workspace One.
  4. Enter a Name for the Source. The description is optional.
  5. (Optional) For Source Category, enter any string to tag the output collected from the Source. Category metadata is stored in a searchable field called _sourceCategory.
  6. (Optional) Fields. Click the +Add button to define the fields you want to associate. Each field needs a name (key) and value.
    • green check circle.png A green circle with a check mark is shown when the field exists in the Fields table schema.
    • orange exclamation point.png An orange triangle with an exclamation point is shown when the field doesn't exist in the Fields table schema. In this case, an option to automatically add the nonexistent fields to the Fields table schema is provided. If a field is sent to Sumo Logic that does not exist in the Fields schema is ignored, known as dropped.
  7. Endpoint URL. Enter the VMware Workspace One platform endpoint URL. For example, https://as135.awmdm.com.
  8. Auth URL. Enter the API region URL to fetch the auth token collected from the VMware Workspace One platform. For example, https://uat.uemauth.vmwservices.com.
  9. Client ID. Enter the Client ID of your account collected from the VMware Workspace One platform. For example, cfea26d59bd542488ea706b025564d42.
  10. Client Secret. Enter the Client Secret key of your account collected from the VMware Workspace One platform. For example, E2220271xxxxxxxxxxxxxxxxxxxxx4556634.
  11. (Optional) Device Type. Enter the list of device types to collect information.
  12. Select the Collect Apps Details checkbox to collect the apps details.
  13. When you are finished configuring the Source, click Submit.

JSON schema

Sources can be configured using UTF-8 encoded JSON files with the Collector Management API. See Use JSON to Configure Sources for details. 

ParameterTypeValueRequiredDescription
schemaRefJSON Object{"type":"VMware Workspace One"}YesDefine the specific schema type.
sourceTypeString"Universal"YesType of source.
configJSON ObjectConfiguration objectYesSource type specific values.

Configuration Object

ParameterTypeRequiredDefaultDescriptionExample
nameStringYesnullType a desired name of the source. The name must be unique per Collector. This value is assigned to the metadata field _source."mySource"
descriptionStringNonullType a description of the source."Testing source"
categoryStringNonullType a category of the source. This value is assigned to the metadata field _sourceCategory. See best practices for details."mySource/test"
fieldsJSON ObjectNonullJSON map of key-value fields (metadata) to apply to the collector or source. Use the boolean field _siemForward to enable forwarding to SIEM.{"_siemForward": false, "fieldA": "valueA"}
requestEndpointStringYesnullThe base URL to fetch the data from the VMware Workspace One source.https://as135.awmdm.com
authURLStringYesnullThe API URL to fetch the authentication token from the VMware Workspace One source.https://uat.uemauth.vmwservices.com
clientIDStringYesnullClient ID of your account.cfea26d59bd542488ea706b025564d42
clientSecretStringYesnullClient Secret of your account.E2220271xxxxxxxxxxxxxxxxxxxxx4556634
deviceTypeStringNonullPlatform type of the device.Apple, Android, and/or WindowsPC
pollingIntervalVulnerabilityMinStringYes24 hoursTime interval (in minutes) after which the source will check for new data.
Default: 24 hours
Minimum: 12 hours
Maximum: 24 hours
collectAppsDetailsBooleanNoFalseSpecify if you need to collect the app details.

JSON example

{
"api.version": "v1",
"source": {
"config": {
"name": "VMWare Workspace One",
"requestEndpoint": "https://as135.awmdm.com",
"authURL": "https://uat.uemauth.vmwservices.com",
"clientID": "3xxxx62vvccbv4f6fbaxxxxxxx748e201",
"clientSecret": "678adsfsxxxxxxxxxxxxxxxxfsf1",
"deviceType": [
"Apple",
"Android",
"WindowsPC"
],
"pollingIntervalSearchHour": "24h",
"collectAppsDetails": true
},
"schemaRef": {
"type": "VMware Workspace One"
},
"sourceType": "Universal"
}}
Download example

Terraform example

resource "sumologic_cloud_to_cloud_source" "vmware-workspace-one-source" {
collector_id = sumologic_collector.collector.id
schema_ref = {
type = "VMware Workspace One"
}
config = jsonencode({
"name": "VMWare Workspace One",
"requestEndpoint": "https://as135.awmdm.com",
"authURL": "https://uat.uemauth.vmwservices.com",
"clientID": "3xxxx62vvccbv4f6fbaxxxxxxx748e201",
"clientSecret": "678adsfsxxxxxxxxxxxxxxxxfsf1",
"deviceType": [
"Apple",
"Android",
"WindowsPC"
],
"pollingIntervalSearchHour": "24h",
"collectAppsDetails": true
})
}
resource "sumologic_collector" "collector" {
name = "my-collector"
description = "Just testing this"
}
Download example

FAQ

info

Click here for more information about Cloud-to-Cloud sources.

Status
Legal
Privacy Statement
Terms of Use

Copyright © 2024 by Sumo Logic, Inc.