publishedResource resource type
Namespace: microsoft.graph
Important
APIs under the /beta
version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
Represents on-premises published resource. A tenant administrator can publish various types of on-premises resources - enterprise applications, domain controllers, servers, etc. On-premises agents installed by a tenant administrator can be configured to access/handle requests to a particular published resource.
Methods
Method | Return Type | Description |
---|---|---|
List | publishedResource objects collection | Get a publishedResources object collection. |
Get | publishedResource | Read the properties and relationships of a publishedResource object. |
Create | publishedResource | Create a new publishedResource. |
Update | publishedResource | Update a publishedResource object. |
Delete | None | Delete a publishedResource object. |
Assign to agent group | None | Assign a publishedResource object to an onPremisesAgentGroup. |
Remove from agent group | None | Remove a publishedResource object from an onPremisesAgentGroup. |
Properties
Property | Type | Description |
---|---|---|
displayName | String | Display Name of the publishedResource. |
id | String | The object id of the publishedResource. Read-only. |
publishingType | String | Possible values are: applicationProxy , exchangeOnline , authentication , provisioning , adAdministration . |
resourceName | String | Name of the publishedResource. |
Relationships
Relationship | Type | Description |
---|---|---|
agentGroups | onPremisesAgentGroup collection | List of onPremisesAgentGroups that a publishedResource is assigned to. Read-only. Nullable. |
JSON representation
The following JSON representation shows the resource type.
{
"displayName": "String",
"id": "String (identifier)",
"publishingType": "string",
"resourceName": "String"
}