Skip to content

Commit

Permalink
[Network] Update the CipherSuite name (Azure#29601)
Browse files Browse the repository at this point in the history
* Update the CipherSuite name

* Prepare to release ResourceManager 1.1.2

* solve dup name

* fix test

* update samples

* update compute
  • Loading branch information
ArthurMa1978 authored and sofiar-msft committed Dec 7, 2022
1 parent ca778d3 commit b50af5b
Show file tree
Hide file tree
Showing 77 changed files with 631 additions and 609 deletions.
2 changes: 1 addition & 1 deletion sdk/compute/Azure.ResourceManager.Compute/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ var nicData = new NetworkInterfaceData()
Name = "Primary",
Primary = true,
Subnet = new SubnetData() { Id = vnet.Data.Subnets.First().Id },
PrivateIPAllocationMethod = IPAllocationMethod.Dynamic,
PrivateIPAllocationMethod = NetworkIPAllocationMethod.Dynamic,
}
}
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,8 @@ public partial class CloudServiceOSFamilyData : Azure.ResourceManager.Models.Res
internal CloudServiceOSFamilyData() { }
public string Label { get { throw null; } }
public Azure.Core.AzureLocation? Location { get { throw null; } }
public string NamePropertiesName { get { throw null; } }
public string OSFamilyName { get { throw null; } }
public string ResourceName { get { throw null; } }
public System.Collections.Generic.IReadOnlyList<Azure.ResourceManager.Compute.Models.OSVersionPropertiesBase> Versions { get { throw null; } }
}
public partial class CloudServiceOSFamilyResource : Azure.ResourceManager.ArmResource
Expand Down Expand Up @@ -721,7 +722,7 @@ protected DedicatedHostGroupCollection() { }
public partial class DedicatedHostGroupData : Azure.ResourceManager.Models.TrackedResourceData
{
public DedicatedHostGroupData(Azure.Core.AzureLocation location) : base (default(Azure.Core.AzureLocation)) { }
public System.Collections.Generic.IReadOnlyList<Azure.ResourceManager.Resources.Models.SubResource> Hosts { get { throw null; } }
public System.Collections.Generic.IReadOnlyList<Azure.ResourceManager.Resources.Models.SubResource> DedicatedHosts { get { throw null; } }
public System.Collections.Generic.IReadOnlyList<Azure.ResourceManager.Compute.Models.DedicatedHostInstanceViewWithName> InstanceViewHosts { get { throw null; } }
public int? PlatformFaultDomainCount { get { throw null; } set { } }
public bool? SupportAutomaticPlacement { get { throw null; } set { } }
Expand Down Expand Up @@ -5035,8 +5036,8 @@ public partial class ThrottledRequestsContent : Azure.ResourceManager.Compute.Mo
public partial class UefiSettings
{
public UefiSettings() { }
public bool? SecureBootEnabled { get { throw null; } set { } }
public bool? VTpmEnabled { get { throw null; } set { } }
public bool? IsSecureBootEnabled { get { throw null; } set { } }
public bool? IsVirtualTpmEnabled { get { throw null; } set { } }
}
public partial class UpdateDomainIdentifier
{
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions sdk/compute/Azure.ResourceManager.Compute/src/autorest.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,8 @@ rename-mapping:
CreationData: DiskCreationData
Architecture: ArchitectureType
OSFamily: CloudServiceOSFamily
OSFamily.name: ResourceName
OSFamily.properties.name: OSFamilyName
OSVersion: CloudServiceOSVersion
UpdateDomain: UpdateDomainIdentifier
Extension: CloudServiceExtension
Expand All @@ -147,6 +149,9 @@ rename-mapping:
PirCommunityGalleryResource.type: ResourceType
ExpandTypesForGetCapacityReservationGroups: CapacityReservationGroupGetExpand
ExpandTypesForGetVMScaleSets: VirtualMachineScaleSetGetExpand
DedicatedHostGroup.properties.hosts: DedicatedHosts
UefiSettings.secureBootEnabled: IsSecureBootEnabled
UefiSettings.vTpmEnabled: IsVirtualTpmEnabled

directive:
# copy the systemData from common-types here so that it will be automatically replaced
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public async Task NewCode()
Name = "Primary",
Primary = true,
Subnet = new SubnetData() { Id = vnet.Data.Subnets.First().Id },
PrivateIPAllocationMethod = IPAllocationMethod.Dynamic,
PrivateIPAllocationMethod = NetworkIPAllocationMethod.Dynamic,
}
}
};
Expand Down
Loading

0 comments on commit b50af5b

Please sign in to comment.