Skip to content

Update Entitlement

appstream_update_entitlement R Documentation

Updates the specified entitlement

Description

Updates the specified entitlement.

Usage

appstream_update_entitlement(Name, StackName, Description,
  AppVisibility, Attributes)

Arguments

Name

[required] The name of the entitlement.

StackName

[required] The name of the stack with which the entitlement is associated.

Description

The description of the entitlement.

AppVisibility

Specifies whether all or only selected apps are entitled.

Attributes

The attributes of the entitlement.

Value

A list with the following syntax:

list(
  Entitlement = list(
    Name = "string",
    StackName = "string",
    Description = "string",
    AppVisibility = "ALL"|"ASSOCIATED",
    Attributes = list(
      list(
        Name = "string",
        Value = "string"
      )
    ),
    CreatedTime = as.POSIXct(
      "2015-01-01"
    ),
    LastModifiedTime = as.POSIXct(
      "2015-01-01"
    )
  )
)

Request syntax

svc$update_entitlement(
  Name = "string",
  StackName = "string",
  Description = "string",
  AppVisibility = "ALL"|"ASSOCIATED",
  Attributes = list(
    list(
      Name = "string",
      Value = "string"
    )
  )
)