Create Grant Version
| licensemanager_create_grant_version | R Documentation |
Creates a new version of the specified grant¶
Description¶
Creates a new version of the specified grant. For more information, see Granted licenses in License Manager in the License Manager User Guide.
Usage¶
licensemanager_create_grant_version(ClientToken, GrantArn, GrantName,
AllowedOperations, Status, StatusReason, SourceVersion, Options)
Arguments¶
ClientToken[required] Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
GrantArn[required] Amazon Resource Name (ARN) of the grant.
GrantNameGrant name.
AllowedOperationsAllowed operations for the grant.
StatusGrant status.
StatusReasonGrant status reason.
SourceVersionCurrent version of the grant.
OptionsThe options specified for the grant.
Value¶
A list with the following syntax:
list(
GrantArn = "string",
Status = "PENDING_WORKFLOW"|"PENDING_ACCEPT"|"REJECTED"|"ACTIVE"|"FAILED_WORKFLOW"|"DELETED"|"PENDING_DELETE"|"DISABLED"|"WORKFLOW_COMPLETED",
Version = "string"
)
Request syntax¶
svc$create_grant_version(
ClientToken = "string",
GrantArn = "string",
GrantName = "string",
AllowedOperations = list(
"CreateGrant"|"CheckoutLicense"|"CheckoutBorrowLicense"|"CheckInLicense"|"ExtendConsumptionLicense"|"ListPurchasedLicenses"|"CreateToken"
),
Status = "PENDING_WORKFLOW"|"PENDING_ACCEPT"|"REJECTED"|"ACTIVE"|"FAILED_WORKFLOW"|"DELETED"|"PENDING_DELETE"|"DISABLED"|"WORKFLOW_COMPLETED",
StatusReason = "string",
SourceVersion = "string",
Options = list(
ActivationOverrideBehavior = "DISTRIBUTED_GRANTS_ONLY"|"ALL_GRANTS_PERMITTED_BY_ISSUER"
)
)