Esempio n. 1
0
 /// <summary>
 /// Gets named-user licenses.
 /// </summary>
 /// <remarks>
 /// Client Credentials Flow required permissions: License or License.Read.
 ///
 /// Required permissions: License.View.
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='robotType'>
 /// Possible values include: 'NonProduction', 'Attended', 'Unattended',
 /// 'Studio', 'Development', 'StudioX', 'Headless', 'StudioPro',
 /// 'TestAutomation'
 /// </param>
 /// <param name='expand'>
 /// Indicates the related entities to be represented inline. The maximum depth
 /// is 2.
 /// </param>
 /// <param name='filter'>
 /// Restricts the set of items returned. The maximum number of expressions is
 /// 100.
 /// </param>
 /// <param name='select'>
 /// Limits the properties returned in the result.
 /// </param>
 /// <param name='orderby'>
 /// Specifies the order in which items are returned. The maximum number of
 /// expressions is 5.
 /// </param>
 /// <param name='top'>
 /// Limits the number of items returned from a collection. The maximum value is
 /// 1000.
 /// </param>
 /// <param name='skip'>
 /// Excludes the specified number of items of the queried collection from the
 /// result.
 /// </param>
 /// <param name='count'>
 /// Indicates whether the total count of items within a collection are returned
 /// in the result.
 /// </param>
 public static ODataValueOfIEnumerableOfLicenseNamedUserDto GetLicensesNamedUserByRobottype(this ILicensesNamedUser operations, RobotType robotType, string expand = default(string), string filter = default(string), string select = default(string), string orderby = default(string), int?top = default(int?), int?skip = default(int?), bool?count = default(bool?))
 {
     return(operations.GetLicensesNamedUserByRobottypeAsync(robotType, expand, filter, select, orderby, top, skip, count).GetAwaiter().GetResult());
 }
Esempio n. 2
0
 /// <summary>
 /// Gets named-user licenses.
 /// </summary>
 /// <remarks>
 /// Required permissions: Robots.View.
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='robotType'>
 /// Possible values include: 'NonProduction', 'Attended', 'Unattended',
 /// 'Development'
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <ODataResponseListLicenseNamedUserDto> GetLicensesNamedUserByRobottypeAsync(this ILicensesNamedUser operations, string robotType, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken))
 {
     using (var _result = await operations.GetLicensesNamedUserByRobottypeWithHttpMessagesAsync(robotType, null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }
Esempio n. 3
0
 /// <summary>
 /// Gets named-user licenses.
 /// </summary>
 /// <remarks>
 /// Client Credentials Flow required permissions: License or License.Read.
 ///
 /// Required permissions: License.View.
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='robotType'>
 /// Possible values include: 'NonProduction', 'Attended', 'Unattended',
 /// 'Studio', 'Development', 'StudioX', 'Headless', 'StudioPro',
 /// 'TestAutomation'
 /// </param>
 /// <param name='expand'>
 /// Indicates the related entities to be represented inline. The maximum depth
 /// is 2.
 /// </param>
 /// <param name='filter'>
 /// Restricts the set of items returned. The maximum number of expressions is
 /// 100.
 /// </param>
 /// <param name='select'>
 /// Limits the properties returned in the result.
 /// </param>
 /// <param name='orderby'>
 /// Specifies the order in which items are returned. The maximum number of
 /// expressions is 5.
 /// </param>
 /// <param name='top'>
 /// Limits the number of items returned from a collection. The maximum value is
 /// 1000.
 /// </param>
 /// <param name='skip'>
 /// Excludes the specified number of items of the queried collection from the
 /// result.
 /// </param>
 /// <param name='count'>
 /// Indicates whether the total count of items within a collection are returned
 /// in the result.
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <ODataValueOfIEnumerableOfLicenseNamedUserDto> GetLicensesNamedUserByRobottypeAsync(this ILicensesNamedUser operations, RobotType robotType, string expand = default(string), string filter = default(string), string select = default(string), string orderby = default(string), int?top = default(int?), int?skip = default(int?), bool?count = default(bool?), CancellationToken cancellationToken = default(CancellationToken))
 {
     using (var _result = await operations.GetLicensesNamedUserByRobottypeWithHttpMessagesAsync(robotType, expand, filter, select, orderby, top, skip, count, null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }
Esempio n. 4
0
 /// <summary>
 /// Gets named-user licenses.
 /// </summary>
 /// <remarks>
 /// Required permissions: Robots.View.
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='robotType'>
 /// Possible values include: 'NonProduction', 'Attended', 'Unattended',
 /// 'Development'
 /// </param>
 public static ODataResponseListLicenseNamedUserDto GetLicensesNamedUserByRobottype(this ILicensesNamedUser operations, string robotType)
 {
     return(operations.GetLicensesNamedUserByRobottypeAsync(robotType).GetAwaiter().GetResult());
 }