Skip to content

Commit ed61d76

Browse files
authored
Update GA module versions and regenerate (#15518)
* update version and regen * fix urls
1 parent e868a2c commit ed61d76

24 files changed

+49
-30
lines changed

src/AppConfiguration/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ internal
66
exports
77
tools
88
custom/*.psm1
9+
custom/autogen-model-cmdlets
910
test/*-TestResults.xml
1011
/*.ps1
1112
/*.ps1xml

src/AppConfiguration/Az.AppConfiguration.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@{
22
GUID = '3ff16738-381e-4d5a-9d90-c7ef6816f78e'
33
RootModule = './Az.AppConfiguration.psm1'
4-
ModuleVersion = '0.2.0'
4+
ModuleVersion = '1.0.0'
55
CompatiblePSEditions = 'Core', 'Desktop'
66
Author = 'Microsoft Corporation'
77
CompanyName = 'Microsoft Corporation'

src/AppConfiguration/custom/readme.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@ These provide functionality to our HTTP pipeline and other useful features. In s
3131

3232
### Attributes
3333
For processing the cmdlets, we've created some additional attributes:
34-
- `Microsoft.Azure.PowerShell.Cmdlets.AppConfiguration.Models.DescriptionAttribute`
34+
- `Microsoft.Azure.PowerShell.Cmdlets.AppConfiguration.DescriptionAttribute`
3535
- Used in C# cmdlets to provide a high-level description of the cmdlet. This is propegated to reference documentation via [help comments](https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_comment_based_help) in the exported scripts.
36-
- `Microsoft.Azure.PowerShell.Cmdlets.AppConfiguration.Models.DoNotExportAttribute`
36+
- `Microsoft.Azure.PowerShell.Cmdlets.AppConfiguration.DoNotExportAttribute`
3737
- Used in C# and script cmdlets to suppress creating an exported cmdlet at build-time. These cmdlets will *not be exposed* by `Az.AppConfiguration`.
38-
- `Microsoft.Azure.PowerShell.Cmdlets.AppConfiguration.Models.InternalExportAttribute`
38+
- `Microsoft.Azure.PowerShell.Cmdlets.AppConfiguration.InternalExportAttribute`
3939
- Used in C# cmdlets to route exported cmdlets to the `..\internal`, which are *not exposed* by `Az.AppConfiguration`. For more information, see [readme.md](..\internal/readme.md) in the `..\internal` folder.
40-
- `Microsoft.Azure.PowerShell.Cmdlets.AppConfiguration.Models.ProfileAttribute`
40+
- `Microsoft.Azure.PowerShell.Cmdlets.AppConfiguration.ProfileAttribute`
4141
- Used in C# and script cmdlets to define which Azure profiles the cmdlet supports. This is only supported for Azure (`--azure`) modules.

src/AppConfiguration/readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ This directory contains the PowerShell module for the AppConfiguration service.
1717
This module was primarily generated via [AutoRest](https://github.com/Azure/autorest) using the [PowerShell](https://github.com/Azure/autorest.powershell) extension.
1818

1919
## Module Requirements
20-
- [Az.Accounts module](https://www.powershellgallery.com/packages/Az.Accounts/), version 1.8.1 or greater
20+
- [Az.Accounts module](https://www.powershellgallery.com/packages/Az.Accounts/), version 2.2.3 or greater
2121

2222
## Authentication
2323
AutoRest does not generate authentication code for the module. Authentication is handled via Az.Accounts by altering the HTTP payload before it is sent.
@@ -53,7 +53,7 @@ require:
5353
input-file:
5454
- https://github.com/Azure/azure-rest-api-specs/blob/5d7c9b734d462cc3b111757957c7d2cc027dff80/specification/appconfiguration/resource-manager/Microsoft.AppConfiguration/stable/2020-06-01/appconfiguration.json
5555

56-
module-version: 0.2.0
56+
module-version: 1.0.0
5757
title: AppConfiguration
5858

5959
# If there are post APIs for some kinds of actions in the RP, you may need to
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#This script converts securestring to plaintext
2+
3+
param(
4+
[Parameter(Mandatory, ValueFromPipeline)]
5+
[System.Security.SecureString]
6+
${SecureString}
7+
)
8+
9+
$ssPtr = [System.Runtime.InteropServices.Marshal]::SecureStringToBSTR($SecureString)
10+
try {
11+
$plaintext = [System.Runtime.InteropServices.Marshal]::PtrToStringBSTR($ssPtr)
12+
} finally {
13+
[System.Runtime.InteropServices.Marshal]::ZeroFreeBSTR($ssPtr)
14+
}
15+
16+
return $plaintext

src/Databricks/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ internal
66
exports
77
tools
88
custom/*.psm1
9+
custom/autogen-model-cmdlets
910
test/*-TestResults.xml
1011
/*.ps1
1112
/*.ps1xml

src/Databricks/Az.Databricks.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@{
22
GUID = 'b453c0c1-7867-4fa1-9fd0-0cf8f6c6959c'
33
RootModule = './Az.Databricks.psm1'
4-
ModuleVersion = '0.2.0'
4+
ModuleVersion = '1.1.0'
55
CompatiblePSEditions = 'Core', 'Desktop'
66
Author = 'Microsoft Corporation'
77
CompanyName = 'Microsoft Corporation'

src/Databricks/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ require:
5353
input-file:
5454
- https://github.com/Azure/azure-rest-api-specs/blob/9120c925c8de6840da38365bb8807be2e0e617c0/specification/databricks/resource-manager/Microsoft.Databricks/stable/2018-04-01/databricks.json
5555

56-
module-version: 0.2.0
56+
module-version: 1.1.0
5757
title: Databricks
5858
subject-prefix: $(service-name)
5959

src/Kusto/Az.Kusto.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@{
22
GUID = '18c61846-f6f0-425e-ba4b-5cf903e2bdd8'
33
RootModule = './Az.Kusto.psm1'
4-
ModuleVersion = '0.1.4'
4+
ModuleVersion = '2.0.0'
55
CompatiblePSEditions = 'Core', 'Desktop'
66
Author = 'Microsoft Corporation'
77
CompanyName = 'Microsoft Corporation'

src/Kusto/custom/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ These provide functionality to our HTTP pipeline and other useful features. In s
3232
### Attributes
3333
For processing the cmdlets, we've created some additional attributes:
3434
- `Microsoft.Azure.PowerShell.Cmdlets.Kusto.DescriptionAttribute`
35-
- Used in C# cmdlets to provide a high-level description of the cmdlet. This is propegated to reference documentation via [help comments](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_comment_based_help) in the exported scripts.
35+
- Used in C# cmdlets to provide a high-level description of the cmdlet. This is propegated to reference documentation via [help comments](https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_comment_based_help) in the exported scripts.
3636
- `Microsoft.Azure.PowerShell.Cmdlets.Kusto.DoNotExportAttribute`
3737
- Used in C# and script cmdlets to suppress creating an exported cmdlet at build-time. These cmdlets will *not be exposed* by `Az.Kusto`.
3838
- `Microsoft.Azure.PowerShell.Cmdlets.Kusto.InternalExportAttribute`

0 commit comments

Comments
 (0)