Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…into kiota/v1.0/pipelinebuild/130669
  • Loading branch information
timayabi2020 committed Dec 20, 2023
2 parents 4196470 + a31673a commit 48a8c20
Show file tree
Hide file tree
Showing 28 changed files with 157 additions and 157 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,12 @@ public Command BuildDeleteCommand() {
return command;
}
/// <summary>
/// Retrieve a conversationMember from a chat.
/// Find more info here <see href="https://learn.microsoft.com/graph/api/chat-get-members?view=graph-rest-1.0" />
/// Retrieve a conversationMember from a chat or channel.
/// Find more info here <see href="https://learn.microsoft.com/graph/api/conversationmember-get?view=graph-rest-1.0" />
/// </summary>
public Command BuildGetCommand() {
var command = new Command("get");
command.Description = "Retrieve a conversationMember from a chat.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/chat-get-members?view=graph-rest-1.0";
command.Description = "Retrieve a conversationMember from a chat or channel.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/conversationmember-get?view=graph-rest-1.0";
var chatIdOption = new Option<string>("--chat-id", description: "The unique identifier of chat") {
};
chatIdOption.IsRequired = true;
Expand Down Expand Up @@ -200,7 +200,7 @@ public RequestInformation ToDeleteRequestInformation(Action<RequestConfiguration
return requestInfo;
}
/// <summary>
/// Retrieve a conversationMember from a chat.
/// Retrieve a conversationMember from a chat or channel.
/// </summary>
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
Expand Down Expand Up @@ -234,7 +234,7 @@ public RequestInformation ToPatchRequestInformation(ConversationMember body, Act
return requestInfo;
}
/// <summary>
/// Retrieve a conversationMember from a chat.
/// Retrieve a conversationMember from a chat or channel.
/// </summary>
public class ConversationMemberItemRequestBuilderGetQueryParameters {
/// <summary>Expand related entities</summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,12 @@ public Command BuildDeleteCommand() {
return command;
}
/// <summary>
/// Read properties and relationships of the managedAppConfiguration object.
/// Find more info here <see href="https://learn.microsoft.com/graph/api/intune-mam-managedappconfiguration-get?view=graph-rest-1.0" />
/// Read properties and relationships of the managedAppProtection object.
/// Find more info here <see href="https://learn.microsoft.com/graph/api/intune-mam-managedappprotection-get?view=graph-rest-1.0" />
/// </summary>
public Command BuildGetCommand() {
var command = new Command("get");
command.Description = "Read properties and relationships of the managedAppConfiguration object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-mam-managedappconfiguration-get?view=graph-rest-1.0";
command.Description = "Read properties and relationships of the managedAppProtection object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-mam-managedappprotection-get?view=graph-rest-1.0";
var managedAppPolicyIdOption = new Option<string>("--managed-app-policy-id", description: "The unique identifier of managedAppPolicy") {
};
managedAppPolicyIdOption.IsRequired = true;
Expand Down Expand Up @@ -197,7 +197,7 @@ public RequestInformation ToDeleteRequestInformation(Action<RequestConfiguration
return requestInfo;
}
/// <summary>
/// Read properties and relationships of the managedAppConfiguration object.
/// Read properties and relationships of the managedAppProtection object.
/// </summary>
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
Expand Down Expand Up @@ -231,7 +231,7 @@ public RequestInformation ToPatchRequestInformation(ManagedAppPolicy body, Actio
return requestInfo;
}
/// <summary>
/// Read properties and relationships of the managedAppConfiguration object.
/// Read properties and relationships of the managedAppProtection object.
/// </summary>
public class ManagedAppPolicyItemRequestBuilderGetQueryParameters {
/// <summary>Expand related entities</summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,12 +93,12 @@ public Command BuildCreateCommand() {
return command;
}
/// <summary>
/// List properties and relationships of the managedAppConfiguration objects.
/// Find more info here <see href="https://learn.microsoft.com/graph/api/intune-mam-managedappconfiguration-list?view=graph-rest-1.0" />
/// List properties and relationships of the managedAppPolicy objects.
/// Find more info here <see href="https://learn.microsoft.com/graph/api/intune-mam-managedapppolicy-list?view=graph-rest-1.0" />
/// </summary>
public Command BuildListCommand() {
var command = new Command("list");
command.Description = "List properties and relationships of the managedAppConfiguration objects.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-mam-managedappconfiguration-list?view=graph-rest-1.0";
command.Description = "List properties and relationships of the managedAppPolicy objects.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-mam-managedapppolicy-list?view=graph-rest-1.0";
var topOption = new Option<int?>("--top", description: "Show only the first n items") {
};
topOption.IsRequired = false;
Expand Down Expand Up @@ -198,7 +198,7 @@ public ManagedAppPoliciesRequestBuilder(Dictionary<string, object> pathParameter
public ManagedAppPoliciesRequestBuilder(string rawUrl) : base("{+baseurl}/deviceAppManagement/managedAppPolicies{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) {
}
/// <summary>
/// List properties and relationships of the managedAppConfiguration objects.
/// List properties and relationships of the managedAppPolicy objects.
/// </summary>
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
Expand Down Expand Up @@ -232,7 +232,7 @@ public RequestInformation ToPostRequestInformation(ManagedAppPolicy body, Action
return requestInfo;
}
/// <summary>
/// List properties and relationships of the managedAppConfiguration objects.
/// List properties and relationships of the managedAppPolicy objects.
/// </summary>
public class ManagedAppPoliciesRequestBuilderGetQueryParameters {
/// <summary>Include count of items</summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,12 +98,12 @@ public Command BuildCreateCommand() {
return command;
}
/// <summary>
/// List properties and relationships of the iosVppEBook objects.
/// Find more info here <see href="https://learn.microsoft.com/graph/api/intune-books-iosvppebook-list?view=graph-rest-1.0" />
/// List properties and relationships of the managedEBook objects.
/// Find more info here <see href="https://learn.microsoft.com/graph/api/intune-books-managedebook-list?view=graph-rest-1.0" />
/// </summary>
public Command BuildListCommand() {
var command = new Command("list");
command.Description = "List properties and relationships of the iosVppEBook objects.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-books-iosvppebook-list?view=graph-rest-1.0";
command.Description = "List properties and relationships of the managedEBook objects.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-books-managedebook-list?view=graph-rest-1.0";
var topOption = new Option<int?>("--top", description: "Show only the first n items") {
};
topOption.IsRequired = false;
Expand Down Expand Up @@ -203,7 +203,7 @@ public ManagedEBooksRequestBuilder(Dictionary<string, object> pathParameters) :
public ManagedEBooksRequestBuilder(string rawUrl) : base("{+baseurl}/deviceAppManagement/managedEBooks{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}", rawUrl) {
}
/// <summary>
/// List properties and relationships of the iosVppEBook objects.
/// List properties and relationships of the managedEBook objects.
/// </summary>
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
Expand Down Expand Up @@ -237,7 +237,7 @@ public RequestInformation ToPostRequestInformation(ManagedEBook body, Action<Req
return requestInfo;
}
/// <summary>
/// List properties and relationships of the iosVppEBook objects.
/// List properties and relationships of the managedEBook objects.
/// </summary>
public class ManagedEBooksRequestBuilderGetQueryParameters {
/// <summary>Include count of items</summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,12 +142,12 @@ public Command BuildDeviceStatusSummaryNavCommand() {
return command;
}
/// <summary>
/// Read properties and relationships of the iosMobileAppConfiguration object.
/// Find more info here <see href="https://learn.microsoft.com/graph/api/intune-apps-iosmobileappconfiguration-get?view=graph-rest-1.0" />
/// Read properties and relationships of the managedDeviceMobileAppConfiguration object.
/// Find more info here <see href="https://learn.microsoft.com/graph/api/intune-apps-manageddevicemobileappconfiguration-get?view=graph-rest-1.0" />
/// </summary>
public Command BuildGetCommand() {
var command = new Command("get");
command.Description = "Read properties and relationships of the iosMobileAppConfiguration object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-apps-iosmobileappconfiguration-get?view=graph-rest-1.0";
command.Description = "Read properties and relationships of the managedDeviceMobileAppConfiguration object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-apps-manageddevicemobileappconfiguration-get?view=graph-rest-1.0";
var managedDeviceMobileAppConfigurationIdOption = new Option<string>("--managed-device-mobile-app-configuration-id", description: "The unique identifier of managedDeviceMobileAppConfiguration") {
};
managedDeviceMobileAppConfigurationIdOption.IsRequired = true;
Expand Down Expand Up @@ -313,7 +313,7 @@ public RequestInformation ToDeleteRequestInformation(Action<RequestConfiguration
return requestInfo;
}
/// <summary>
/// Read properties and relationships of the iosMobileAppConfiguration object.
/// Read properties and relationships of the managedDeviceMobileAppConfiguration object.
/// </summary>
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
Expand Down Expand Up @@ -347,7 +347,7 @@ public RequestInformation ToPatchRequestInformation(ManagedDeviceMobileAppConfig
return requestInfo;
}
/// <summary>
/// Read properties and relationships of the iosMobileAppConfiguration object.
/// Read properties and relationships of the managedDeviceMobileAppConfiguration object.
/// </summary>
public class ManagedDeviceMobileAppConfigurationItemRequestBuilderGetQueryParameters {
/// <summary>Expand related entities</summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,12 +103,12 @@ public Command BuildCategoriesNavCommand() {
return command;
}
/// <summary>
/// Deletes a microsoftStoreForBusinessApp.
/// Find more info here <see href="https://learn.microsoft.com/graph/api/intune-apps-microsoftstoreforbusinessapp-delete?view=graph-rest-1.0" />
/// Deletes a macOSOfficeSuiteApp.
/// Find more info here <see href="https://learn.microsoft.com/graph/api/intune-apps-macosofficesuiteapp-delete?view=graph-rest-1.0" />
/// </summary>
public Command BuildDeleteCommand() {
var command = new Command("delete");
command.Description = "Deletes a microsoftStoreForBusinessApp.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-apps-microsoftstoreforbusinessapp-delete?view=graph-rest-1.0";
command.Description = "Deletes a macOSOfficeSuiteApp.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-apps-macosofficesuiteapp-delete?view=graph-rest-1.0";
var mobileAppIdOption = new Option<string>("--mobile-app-id", description: "The unique identifier of mobileApp") {
};
mobileAppIdOption.IsRequired = true;
Expand Down Expand Up @@ -137,12 +137,12 @@ public Command BuildDeleteCommand() {
return command;
}
/// <summary>
/// Read properties and relationships of the windowsMicrosoftEdgeApp object.
/// Find more info here <see href="https://learn.microsoft.com/graph/api/intune-apps-windowsmicrosoftedgeapp-get?view=graph-rest-1.0" />
/// Read properties and relationships of the managedAndroidStoreApp object.
/// Find more info here <see href="https://learn.microsoft.com/graph/api/intune-apps-managedandroidstoreapp-get?view=graph-rest-1.0" />
/// </summary>
public Command BuildGetCommand() {
var command = new Command("get");
command.Description = "Read properties and relationships of the windowsMicrosoftEdgeApp object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-apps-windowsmicrosoftedgeapp-get?view=graph-rest-1.0";
command.Description = "Read properties and relationships of the managedAndroidStoreApp object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-apps-managedandroidstoreapp-get?view=graph-rest-1.0";
var mobileAppIdOption = new Option<string>("--mobile-app-id", description: "The unique identifier of mobileApp") {
};
mobileAppIdOption.IsRequired = true;
Expand Down Expand Up @@ -552,12 +552,12 @@ public Command BuildGraphWindowsWebAppByIdNavCommand() {
return command;
}
/// <summary>
/// Update the properties of a androidStoreApp object.
/// Find more info here <see href="https://learn.microsoft.com/graph/api/intune-apps-androidstoreapp-update?view=graph-rest-1.0" />
/// Update the properties of a macOSLobApp object.
/// Find more info here <see href="https://learn.microsoft.com/graph/api/intune-apps-macoslobapp-update?view=graph-rest-1.0" />
/// </summary>
public Command BuildPatchCommand() {
var command = new Command("patch");
command.Description = "Update the properties of a androidStoreApp object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-apps-androidstoreapp-update?view=graph-rest-1.0";
command.Description = "Update the properties of a macOSLobApp object.\n\nFind more info here:\n https://learn.microsoft.com/graph/api/intune-apps-macoslobapp-update?view=graph-rest-1.0";
var mobileAppIdOption = new Option<string>("--mobile-app-id", description: "The unique identifier of mobileApp") {
};
mobileAppIdOption.IsRequired = true;
Expand Down Expand Up @@ -614,7 +614,7 @@ public MobileAppItemRequestBuilder(Dictionary<string, object> pathParameters) :
public MobileAppItemRequestBuilder(string rawUrl) : base("{+baseurl}/deviceAppManagement/mobileApps/{mobileApp%2Did}{?%24select,%24expand}", rawUrl) {
}
/// <summary>
/// Deletes a microsoftStoreForBusinessApp.
/// Deletes a macOSOfficeSuiteApp.
/// </summary>
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
Expand All @@ -630,7 +630,7 @@ public RequestInformation ToDeleteRequestInformation(Action<RequestConfiguration
return requestInfo;
}
/// <summary>
/// Read properties and relationships of the windowsMicrosoftEdgeApp object.
/// Read properties and relationships of the managedAndroidStoreApp object.
/// </summary>
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
Expand All @@ -646,7 +646,7 @@ public RequestInformation ToGetRequestInformation(Action<RequestConfiguration<Mo
return requestInfo;
}
/// <summary>
/// Update the properties of a androidStoreApp object.
/// Update the properties of a macOSLobApp object.
/// </summary>
/// <param name="body">The request body</param>
/// <param name="requestConfiguration">Configuration for the request such as headers, query parameters, and middleware options.</param>
Expand All @@ -664,7 +664,7 @@ public RequestInformation ToPatchRequestInformation(MobileApp body, Action<Reque
return requestInfo;
}
/// <summary>
/// Read properties and relationships of the windowsMicrosoftEdgeApp object.
/// Read properties and relationships of the managedAndroidStoreApp object.
/// </summary>
public class MobileAppItemRequestBuilderGetQueryParameters {
/// <summary>Expand related entities</summary>
Expand Down
Loading

0 comments on commit 48a8c20

Please sign in to comment.