mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 19:14:25 +00:00
62 lines
3.5 KiB
C#
62 lines
3.5 KiB
C#
|
|
// <auto-generated/>
|
||
|
|
#pragma warning disable CS0618
|
||
|
|
using Marechai.App.ProcessorsByMachine.ByProcessor.Item;
|
||
|
|
using Microsoft.Kiota.Abstractions.Extensions;
|
||
|
|
using Microsoft.Kiota.Abstractions;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using System.IO;
|
||
|
|
using System.Threading.Tasks;
|
||
|
|
using System;
|
||
|
|
namespace Marechai.App.ProcessorsByMachine.ByProcessor
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Builds and executes requests for operations under \processors-by-machine\by-processor
|
||
|
|
/// </summary>
|
||
|
|
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
|
||
|
|
public partial class ByProcessorRequestBuilder : BaseRequestBuilder
|
||
|
|
{
|
||
|
|
/// <summary>Gets an item from the Marechai.App.processorsByMachine.byProcessor.item collection</summary>
|
||
|
|
/// <param name="position">Unique identifier of the item</param>
|
||
|
|
/// <returns>A <see cref="global::Marechai.App.ProcessorsByMachine.ByProcessor.Item.WithProcessorItemRequestBuilder"/></returns>
|
||
|
|
public global::Marechai.App.ProcessorsByMachine.ByProcessor.Item.WithProcessorItemRequestBuilder this[int position]
|
||
|
|
{
|
||
|
|
get
|
||
|
|
{
|
||
|
|
var urlTplParams = new Dictionary<string, object>(PathParameters);
|
||
|
|
urlTplParams.Add("processorId", position);
|
||
|
|
return new global::Marechai.App.ProcessorsByMachine.ByProcessor.Item.WithProcessorItemRequestBuilder(urlTplParams, RequestAdapter);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
/// <summary>Gets an item from the Marechai.App.processorsByMachine.byProcessor.item collection</summary>
|
||
|
|
/// <param name="position">Unique identifier of the item</param>
|
||
|
|
/// <returns>A <see cref="global::Marechai.App.ProcessorsByMachine.ByProcessor.Item.WithProcessorItemRequestBuilder"/></returns>
|
||
|
|
[Obsolete("This indexer is deprecated and will be removed in the next major version. Use the one with the typed parameter instead.")]
|
||
|
|
public global::Marechai.App.ProcessorsByMachine.ByProcessor.Item.WithProcessorItemRequestBuilder this[string position]
|
||
|
|
{
|
||
|
|
get
|
||
|
|
{
|
||
|
|
var urlTplParams = new Dictionary<string, object>(PathParameters);
|
||
|
|
if (!string.IsNullOrWhiteSpace(position)) urlTplParams.Add("processorId", position);
|
||
|
|
return new global::Marechai.App.ProcessorsByMachine.ByProcessor.Item.WithProcessorItemRequestBuilder(urlTplParams, RequestAdapter);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
/// <summary>
|
||
|
|
/// Instantiates a new <see cref="global::Marechai.App.ProcessorsByMachine.ByProcessor.ByProcessorRequestBuilder"/> and sets the default values.
|
||
|
|
/// </summary>
|
||
|
|
/// <param name="pathParameters">Path parameters for the request</param>
|
||
|
|
/// <param name="requestAdapter">The request adapter to use to execute the requests.</param>
|
||
|
|
public ByProcessorRequestBuilder(Dictionary<string, object> pathParameters, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/processors-by-machine/by-processor", pathParameters)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
/// <summary>
|
||
|
|
/// Instantiates a new <see cref="global::Marechai.App.ProcessorsByMachine.ByProcessor.ByProcessorRequestBuilder"/> and sets the default values.
|
||
|
|
/// </summary>
|
||
|
|
/// <param name="rawUrl">The raw URL to use for the request builder.</param>
|
||
|
|
/// <param name="requestAdapter">The request adapter to use to execute the requests.</param>
|
||
|
|
public ByProcessorRequestBuilder(string rawUrl, IRequestAdapter requestAdapter) : base(requestAdapter, "{+baseurl}/processors-by-machine/by-processor", rawUrl)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
#pragma warning restore CS0618
|