Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
# Release History

## 1.3.0-beta.4 (Unreleased)

### Features Added

### Breaking Changes
## 1.3.0-beta.4 (2025-09-16)

### Bugs Fixed

### Other Changes
- Added missing ContainerGroup properties: ConfigMap, ContainerGroupProfile, StandbyPoolProfile, and IsCreatedFromStandbyPool.
- Corrected required flag on properties in Container and ContainerGroup models.
- Fixed the response handling for ContainerGroupProfile DELETE operation.
- Aligned requiredness of ContainerGroupProfile properties and normalized the Revision property format with the existing codebase.

## 1.3.0-beta.3 (2025-08-11)

Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public static partial class ArmContainerInstanceModelFactory
[EditorBrowsable(EditorBrowsableState.Never)]
public static ContainerGroupData ContainerGroupData(ResourceIdentifier id, string name, ResourceType resourceType, SystemData systemData, IDictionary<string, string> tags, AzureLocation location, IEnumerable<string> zones, ManagedServiceIdentity identity, string provisioningState, IEnumerable<ContainerInstanceContainer> containers, IEnumerable<ContainerGroupImageRegistryCredential> imageRegistryCredentials, ContainerGroupRestartPolicy? restartPolicy, ContainerGroupIPAddress ipAddress, ContainerInstanceOperatingSystemType osType, IEnumerable<ContainerVolume> volumes, ContainerGroupInstanceView instanceView, ContainerGroupLogAnalytics diagnosticsLogAnalytics, IEnumerable<ContainerGroupSubnetId> subnetIds, ContainerGroupDnsConfiguration dnsConfig, ContainerGroupSku? sku, ContainerGroupEncryptionProperties encryptionProperties, IEnumerable<InitContainerDefinitionContent> initContainers, IEnumerable<DeploymentExtensionSpec> extensions, string confidentialComputeCcePolicy, ContainerGroupPriority? priority)
{
return new ContainerGroupData(id, name, resourceType, systemData, tags, location, identity, provisioningState, null, containers.ToList(), imageRegistryCredentials.ToList(), restartPolicy, ipAddress, default, volumes.ToList(), instanceView, null, subnetIds.ToList(), dnsConfig, sku, encryptionProperties, initContainers.ToList(), extensions.ToList(), null, priority, null, zones.ToList(), null);
return new ContainerGroupData(id, name, resourceType, systemData, tags, location, identity, provisioningState, null, containers.ToList(), imageRegistryCredentials.ToList(), restartPolicy, ipAddress, default, volumes.ToList(), instanceView, null, subnetIds.ToList(), dnsConfig, sku, encryptionProperties, initContainers.ToList(), extensions.ToList(), null, priority, null, null, null, null, zones.ToList(), null);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public ContainerGroupProfileData(AzureLocation location, IEnumerable<ContainerIn
InitContainers = new ChangeTrackingList<InitContainerDefinitionContent>();
Extensions = new ChangeTrackingList<DeploymentExtensionSpec>();
Zones = new ChangeTrackingList<string>();
RegisteredRevisions = new ChangeTrackingList<long>();
RegisteredRevisions = new ChangeTrackingList<int>();
}
}
}

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

Loading