Get Group Configuration
resourcegroups_get_group_configuration | R Documentation |
Retrieves the service configuration associated with the specified resource group¶
Description¶
Retrieves the service configuration associated with the specified resource group. For details about the service configuration syntax, see Service configurations for Resource Groups.
Minimum permissions
To run this command, you must have the following permissions:
resource-groups:GetGroupConfiguration
Usage¶
Arguments¶
Group
The name or the ARN of the resource group for which you want to retrive the service configuration.
Value¶
A list with the following syntax:
list(
GroupConfiguration = list(
Configuration = list(
list(
Type = "string",
Parameters = list(
list(
Name = "string",
Values = list(
"string"
)
)
)
)
),
ProposedConfiguration = list(
list(
Type = "string",
Parameters = list(
list(
Name = "string",
Values = list(
"string"
)
)
)
)
),
Status = "UPDATING"|"UPDATE_COMPLETE"|"UPDATE_FAILED",
FailureReason = "string"
)
)