-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate App from generation to main (#26644)
* Move App to main * update changelog and BreakingChangeIssues.csv --------- Co-authored-by: azure-powershell-bot <[email protected]> Co-authored-by: Jinpei Li <[email protected]>
- Loading branch information
1 parent
77a5299
commit a94ed58
Showing
256 changed files
with
14,515 additions
and
7,759 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
494 changes: 494 additions & 0 deletions
494
src/App/App.Autorest/custom/Update-AzContainerAppJob.ps1
Large diffs are not rendered by default.
Oops, something went wrong.
31 changes: 31 additions & 0 deletions
31
src/App/App.Autorest/custom/UserAssignedIdentities.json.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. See License.txt in the project root for license information. | ||
// Code generated by Microsoft (R) AutoRest Code Generator. | ||
// Changes may cause incorrect behavior and will be lost if the code is regenerated. | ||
|
||
namespace Microsoft.Azure.PowerShell.Cmdlets.App.Models | ||
{ | ||
using Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.Json; | ||
using static Microsoft.Azure.PowerShell.Cmdlets.App.Runtime.Extensions; | ||
|
||
/// <summary> | ||
/// Gets or sets a list of key value pairs that describe the set of User Assigned identities that will be used with this volume | ||
/// group. The key is the ARM resource identifier of the identity. | ||
/// </summary> | ||
public partial class UserAssignedIdentities | ||
{ | ||
partial void AfterToJson(ref JsonObject container) | ||
{ | ||
if (this.__additionalProperties != null) | ||
{ | ||
foreach (var key in this.__additionalProperties) | ||
{ | ||
if (key.Value == null) | ||
{ | ||
container.Add(key.Key, Runtime.Json.XNull.Instance); | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,9 +16,9 @@ | |
|
||
<# | ||
.Synopsis | ||
Create the AuthConfig for a Container App. | ||
create the AuthConfig for a Container App. | ||
.Description | ||
Create the AuthConfig for a Container App. | ||
create the AuthConfig for a Container App. | ||
.Example | ||
$identity = New-AzContainerAppIdentityProviderObject -RegistrationAppId [email protected] -RegistrationAppSecretSettingName redis-config | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.