/// <summary>
 /// Get process parameters
 /// </summary>
 /// <remarks>
 /// Required permissions: Packages.View.
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='key'>
 /// </param>
 public static ArgumentMetadata GetArgumentsByKey(this IProcesses operations, string key)
 {
     return(operations.GetArgumentsByKeyAsync(key).GetAwaiter().GetResult());
 }
 /// <summary>
 /// Get process parameters
 /// </summary>
 /// <remarks>
 /// Client Credentials Flow required permissions: Execution or Execution.Read.
 ///
 /// Required permissions: Packages.View.
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='key'>
 /// </param>
 /// <param name='expand'>
 /// Indicates the related entities to be represented inline. The maximum depth
 /// is 2.
 /// </param>
 /// <param name='select'>
 /// Limits the properties returned in the result.
 /// </param>
 public static ArgumentMetadata GetArgumentsByKey(this IProcesses operations, string key, string expand = default(string), string select = default(string))
 {
     return(operations.GetArgumentsByKeyAsync(key, expand, select).GetAwaiter().GetResult());
 }