Skip to content

Commit a6bc721

Browse files
[skip ci] Archive 6ee7e14 (#27709)
1 parent 6ee7e14 commit a6bc721

38 files changed

+604
-186
lines changed

generated/ScVmm/ScVmm.Autorest/exports/Get-AzScVmmVMDisk.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Get-AzScVmmVMDisk -vmName "test-vm" -ResourceGroupName "test-rg-01" -DiskName "d
2727
.Outputs
2828
Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.VirtualDisk
2929
.Link
30-
https://learn.microsoft.com/powershell/module/az.scvmm/update-azscvmmvmdisk
30+
https://learn.microsoft.com/powershell/module/az.scvmm/get-azscvmmvmdisk
3131
#>
3232
function Get-AzScVmmVMDisk {
3333
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.VirtualDisk])]

generated/ScVmm/ScVmm.Autorest/exports/Get-AzScVmmVMGuestAgent.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616

1717
<#
1818
.Synopsis
19-
Implements GuestAgent GET method.
19+
Implements Azure Arc agent GET method.
2020
.Description
21-
Implements GuestAgent GET method.
21+
Implements Azure Arc agent GET method.
2222
.Example
2323
Get-AzScVmmVMGuestAgent -Name "test-vm" -ResourceGroupName "test-rg-01"
2424

generated/ScVmm/ScVmm.Autorest/exports/Get-AzScVmmVMNic.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Get-AzScVmmVMNic -vmName "test-vm" -ResourceGroupName "test-rg-01" -NicName "nic
2727
.Outputs
2828
Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.INetworkInterface
2929
.Link
30-
https://learn.microsoft.com/powershell/module/az.scvmm/update-azscvmmvmnic
30+
https://learn.microsoft.com/powershell/module/az.scvmm/get-azscvmmvmnic
3131
#>
3232
function Get-AzScVmmVMNic {
3333
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.INetworkInterface])]

generated/ScVmm/ScVmm.Autorest/exports/New-AzScVmmVMExtension.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616

1717
<#
1818
.Synopsis
19-
The operation to create the extension on a virtual machine where Guest Management is enabled.
19+
The operation to create the extension on a virtual machine where Azure Arc agent is installed.
2020
.Description
21-
The operation to create the extension on a virtual machine where Guest Management is enabled.
21+
The operation to create the extension on a virtual machine where Azure Arc agent is installed.
2222
.Example
2323
New-AzScVmmVMExtension -vmName 'test-vm' -ResourceGroupName 'test-rg-01' -Location 'eastus' -ExtensionName 'RunCommand' -Type 'CustomScriptExtension' -Publisher 'Microsoft.Compute' -Setting @{"commandToExecute"= "whoami"}
2424

generated/ScVmm/ScVmm.Autorest/exports/New-AzScVmmVMGuestAgent.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616

1717
<#
1818
.Synopsis
19-
Enables Guest Management on the Virtual Machine.
19+
Installs Azure Arc agent on the Virtual Machine.
2020
.Description
21-
Enables Guest Management on the Virtual Machine by installing GuestAgent.
21+
Installs Azure Arc agent on the Virtual Machine
2222
.Example
2323
$securePassword = ConvertTo-SecureString "*****" -AsPlainText -Force
2424
New-AzScVmmVMGuestAgent -Name "test-vm" -ResourceGroupName "test-rg-01" -CredentialsPassword $securePassword -CredentialsUsername 'testUser'

generated/ScVmm/ScVmm.Autorest/exports/ProxyCmdletDefinitions.ps1

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4620,7 +4620,7 @@ Get-AzScVmmVMDisk -vmName "test-vm" -ResourceGroupName "test-rg-01" -DiskName "d
46204620
.Outputs
46214621
Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.VirtualDisk
46224622
.Link
4623-
https://learn.microsoft.com/powershell/module/az.scvmm/update-azscvmmvmdisk
4623+
https://learn.microsoft.com/powershell/module/az.scvmm/get-azscvmmvmdisk
46244624
#>
46254625
function Get-AzScVmmVMDisk {
46264626
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.VirtualDisk])]
@@ -4958,9 +4958,9 @@ end {
49584958

49594959
<#
49604960
.Synopsis
4961-
Implements GuestAgent GET method.
4961+
Implements Azure Arc agent GET method.
49624962
.Description
4963-
Implements GuestAgent GET method.
4963+
Implements Azure Arc agent GET method.
49644964
.Example
49654965
Get-AzScVmmVMGuestAgent -Name "test-vm" -ResourceGroupName "test-rg-01"
49664966

@@ -5154,7 +5154,7 @@ Get-AzScVmmVMNic -vmName "test-vm" -ResourceGroupName "test-rg-01" -NicName "nic
51545154
.Outputs
51555155
Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.INetworkInterface
51565156
.Link
5157-
https://learn.microsoft.com/powershell/module/az.scvmm/update-azscvmmvmnic
5157+
https://learn.microsoft.com/powershell/module/az.scvmm/get-azscvmmvmnic
51585158
#>
51595159
function Get-AzScVmmVMNic {
51605160
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.INetworkInterface])]
@@ -7619,9 +7619,9 @@ end {
76197619

76207620
<#
76217621
.Synopsis
7622-
The operation to create the extension on a virtual machine where Guest Management is enabled.
7622+
The operation to create the extension on a virtual machine where Azure Arc agent is installed.
76237623
.Description
7624-
The operation to create the extension on a virtual machine where Guest Management is enabled.
7624+
The operation to create the extension on a virtual machine where Azure Arc agent is installed.
76257625
.Example
76267626
New-AzScVmmVMExtension -vmName 'test-vm' -ResourceGroupName 'test-rg-01' -Location 'eastus' -ExtensionName 'RunCommand' -Type 'CustomScriptExtension' -Publisher 'Microsoft.Compute' -Setting @{"commandToExecute"= "whoami"}
76277627

@@ -7899,9 +7899,9 @@ end {
78997899

79007900
<#
79017901
.Synopsis
7902-
Enables Guest Management on the Virtual Machine.
7902+
Installs Azure Arc agent on the Virtual Machine.
79037903
.Description
7904-
Enables Guest Management on the Virtual Machine by installing GuestAgent.
7904+
Installs Azure Arc agent on the Virtual Machine
79057905
.Example
79067906
$securePassword = ConvertTo-SecureString "*****" -AsPlainText -Force
79077907
New-AzScVmmVMGuestAgent -Name "test-vm" -ResourceGroupName "test-rg-01" -CredentialsPassword $securePassword -CredentialsUsername 'testUser'
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"generate_Id": "d334a7e3-c35d-4235-98a5-7215ccd4fce7"
2+
"generate_Id": "2e00b7d3-20cc-4d79-9637-d046d7720a57"
33
}

generated/ScVmm/ScVmm.Autorest/generated/api/Models/AvailabilitySet.cs

Lines changed: 26 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public partial class AvailabilitySet :
5151
/// <summary>The geo-location where the resource lives</summary>
5252
[Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Origin(Microsoft.Azure.PowerShell.Cmdlets.ScVmm.PropertyOrigin.Inherited)]
5353
[Microsoft.Azure.PowerShell.Cmdlets.ScVmm.DoNotFormat]
54-
public string Location { get => ((Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.ITrackedResourceInternal)__trackedResource).Location; set => ((Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.ITrackedResourceInternal)__trackedResource).Location = value ; }
54+
public string Location { get => ((Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.ITrackedResourceInternal)__trackedResource).Location; set => ((Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.ITrackedResourceInternal)__trackedResource).Location = value ?? null; }
5555

5656
/// <summary>Internal Acessors for ExtendedLocation</summary>
5757
Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.IExtendedLocation Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.IAvailabilitySetInternal.ExtendedLocation { get => (this._extendedLocation = this._extendedLocation ?? new Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.ExtendedLocation()); set { {_extendedLocation = value;} } }
@@ -71,6 +71,24 @@ public partial class AvailabilitySet :
7171
/// <summary>Internal Acessors for SystemData</summary>
7272
Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.ISystemData Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.IResourceInternal.SystemData { get => ((Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.IResourceInternal)__trackedResource).SystemData; set => ((Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.IResourceInternal)__trackedResource).SystemData = value; }
7373

74+
/// <summary>Internal Acessors for SystemDataCreatedAt</summary>
75+
global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.IResourceInternal.SystemDataCreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.IResourceInternal)__trackedResource).SystemDataCreatedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.IResourceInternal)__trackedResource).SystemDataCreatedAt = value; }
76+
77+
/// <summary>Internal Acessors for SystemDataCreatedBy</summary>
78+
string Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.IResourceInternal.SystemDataCreatedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.IResourceInternal)__trackedResource).SystemDataCreatedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.IResourceInternal)__trackedResource).SystemDataCreatedBy = value; }
79+
80+
/// <summary>Internal Acessors for SystemDataCreatedByType</summary>
81+
string Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.IResourceInternal.SystemDataCreatedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.IResourceInternal)__trackedResource).SystemDataCreatedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.IResourceInternal)__trackedResource).SystemDataCreatedByType = value; }
82+
83+
/// <summary>Internal Acessors for SystemDataLastModifiedAt</summary>
84+
global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.IResourceInternal.SystemDataLastModifiedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.IResourceInternal)__trackedResource).SystemDataLastModifiedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.IResourceInternal)__trackedResource).SystemDataLastModifiedAt = value; }
85+
86+
/// <summary>Internal Acessors for SystemDataLastModifiedBy</summary>
87+
string Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.IResourceInternal.SystemDataLastModifiedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.IResourceInternal)__trackedResource).SystemDataLastModifiedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.IResourceInternal)__trackedResource).SystemDataLastModifiedBy = value; }
88+
89+
/// <summary>Internal Acessors for SystemDataLastModifiedByType</summary>
90+
string Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.IResourceInternal.SystemDataLastModifiedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.IResourceInternal)__trackedResource).SystemDataLastModifiedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.IResourceInternal)__trackedResource).SystemDataLastModifiedByType = value; }
91+
7492
/// <summary>Internal Acessors for Type</summary>
7593
string Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.IResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.IResourceInternal)__trackedResource).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.IResourceInternal)__trackedResource).Type = value; }
7694

@@ -102,37 +120,37 @@ public partial class AvailabilitySet :
102120
/// </summary>
103121
[Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Origin(Microsoft.Azure.PowerShell.Cmdlets.ScVmm.PropertyOrigin.Inherited)]
104122
[Microsoft.Azure.PowerShell.Cmdlets.ScVmm.DoNotFormat]
105-
internal Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.ISystemData SystemData { get => ((Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.IResourceInternal)__trackedResource).SystemData; }
123+
internal Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.ISystemData SystemData { get => ((Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.IResourceInternal)__trackedResource).SystemData; set => ((Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.IResourceInternal)__trackedResource).SystemData = value ?? null /* model class */; }
106124

107125
/// <summary>The timestamp of resource creation (UTC).</summary>
108126
[Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Origin(Microsoft.Azure.PowerShell.Cmdlets.ScVmm.PropertyOrigin.Inherited)]
109127
[Microsoft.Azure.PowerShell.Cmdlets.ScVmm.DoNotFormat]
110-
public global::System.DateTime? SystemDataCreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.IResourceInternal)__trackedResource).SystemDataCreatedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.IResourceInternal)__trackedResource).SystemDataCreatedAt = value ?? default(global::System.DateTime); }
128+
public global::System.DateTime? SystemDataCreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.IResourceInternal)__trackedResource).SystemDataCreatedAt; }
111129

112130
/// <summary>The identity that created the resource.</summary>
113131
[Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Origin(Microsoft.Azure.PowerShell.Cmdlets.ScVmm.PropertyOrigin.Inherited)]
114132
[Microsoft.Azure.PowerShell.Cmdlets.ScVmm.DoNotFormat]
115-
public string SystemDataCreatedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.IResourceInternal)__trackedResource).SystemDataCreatedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.IResourceInternal)__trackedResource).SystemDataCreatedBy = value ?? null; }
133+
public string SystemDataCreatedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.IResourceInternal)__trackedResource).SystemDataCreatedBy; }
116134

117135
/// <summary>The type of identity that created the resource.</summary>
118136
[Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Origin(Microsoft.Azure.PowerShell.Cmdlets.ScVmm.PropertyOrigin.Inherited)]
119137
[Microsoft.Azure.PowerShell.Cmdlets.ScVmm.DoNotFormat]
120-
public string SystemDataCreatedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.IResourceInternal)__trackedResource).SystemDataCreatedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.IResourceInternal)__trackedResource).SystemDataCreatedByType = value ?? null; }
138+
public string SystemDataCreatedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.IResourceInternal)__trackedResource).SystemDataCreatedByType; }
121139

122140
/// <summary>The timestamp of resource last modification (UTC)</summary>
123141
[Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Origin(Microsoft.Azure.PowerShell.Cmdlets.ScVmm.PropertyOrigin.Inherited)]
124142
[Microsoft.Azure.PowerShell.Cmdlets.ScVmm.DoNotFormat]
125-
public global::System.DateTime? SystemDataLastModifiedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.IResourceInternal)__trackedResource).SystemDataLastModifiedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.IResourceInternal)__trackedResource).SystemDataLastModifiedAt = value ?? default(global::System.DateTime); }
143+
public global::System.DateTime? SystemDataLastModifiedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.IResourceInternal)__trackedResource).SystemDataLastModifiedAt; }
126144

127145
/// <summary>The identity that last modified the resource.</summary>
128146
[Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Origin(Microsoft.Azure.PowerShell.Cmdlets.ScVmm.PropertyOrigin.Inherited)]
129147
[Microsoft.Azure.PowerShell.Cmdlets.ScVmm.DoNotFormat]
130-
public string SystemDataLastModifiedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.IResourceInternal)__trackedResource).SystemDataLastModifiedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.IResourceInternal)__trackedResource).SystemDataLastModifiedBy = value ?? null; }
148+
public string SystemDataLastModifiedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.IResourceInternal)__trackedResource).SystemDataLastModifiedBy; }
131149

132150
/// <summary>The type of identity that last modified the resource.</summary>
133151
[Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Origin(Microsoft.Azure.PowerShell.Cmdlets.ScVmm.PropertyOrigin.Inherited)]
134152
[Microsoft.Azure.PowerShell.Cmdlets.ScVmm.DoNotFormat]
135-
public string SystemDataLastModifiedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.IResourceInternal)__trackedResource).SystemDataLastModifiedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.IResourceInternal)__trackedResource).SystemDataLastModifiedByType = value ?? null; }
153+
public string SystemDataLastModifiedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Models.IResourceInternal)__trackedResource).SystemDataLastModifiedByType; }
136154

137155
/// <summary>Resource tags.</summary>
138156
[Microsoft.Azure.PowerShell.Cmdlets.ScVmm.Origin(Microsoft.Azure.PowerShell.Cmdlets.ScVmm.PropertyOrigin.Inherited)]

0 commit comments

Comments
 (0)