Skip to content
Open
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
Expand Up @@ -40,7 +40,7 @@
}
],
"securityProfile": {
"securityType": "confidentialVM",
"securityType": "confidentialvm",
"uefiSettings": {
"vTpmEnabled": true,
"secureBootEnabled": true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
}
],
"securityProfile": {
"securityType": "confidentialVM",
"securityType": "confidentialvm",
"uefiSettings": {
"secureBootEnabled": true,
"vTpmEnabled": true
Expand Down
6 changes: 4 additions & 2 deletions specification/batch/Azure.Batch/models.tsp
Original file line number Diff line number Diff line change
Expand Up @@ -134,9 +134,11 @@ union IPFamily {
string,

@doc("IPv4 is available to the pool.")
@clientName("ipv4", "python")
IPv4: "IPv4",

@doc("IPv6 is available to the pool.")
@clientName("ipv6", "python")
IPv6: "IPv6",
}

Expand Down Expand Up @@ -732,7 +734,7 @@ union SecurityTypes {
"trustedLaunch",

@doc("Azure confidential computing offers confidential VMs are for tenants with high security and confidentiality requirements. These VMs provide a strong, hardware-enforced boundary to help meet your security needs. You can use confidential VMs for migrations without making changes to your code, with the platform protecting your VM's state from being read or modified.")
"confidentialVM",
confidentialVM: "confidentialvm",
}

@doc("The result of listing the applications available in an Account.")
Expand Down Expand Up @@ -3862,7 +3864,7 @@ model BatchNode {
@clientName("uri", "csharp")
url: url;

@doc("The current state of the Compute Node. The Spot/Low-priority Compute Node has been preempted. Tasks which were running on the Compute Node when it was preempted will be rescheduled when another Compute Node becomes available.")
@doc("The current state of the Compute Node.")
@visibility(Lifecycle.Read)
state: BatchNodeState;

Expand Down
1 change: 1 addition & 0 deletions specification/batch/cspell.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ words:
- vtpm
- IMDS
- imds
- confidentialvm
overrides:
- filename: '**/specification/batch/Azure.Batch/tspconfig.yaml'
words:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11434,7 +11434,7 @@
},
"state": {
"$ref": "#/definitions/BatchNodeState",
"description": "The current state of the Compute Node. The Spot/Low-priority Compute Node has been preempted. Tasks which were running on the Compute Node when it was preempted will be rescheduled when another Compute Node becomes available.",
"description": "The current state of the Compute Node.",
"readOnly": true
},
"schedulingState": {
Expand Down Expand Up @@ -16265,7 +16265,7 @@
"description": "Specifies the SecurityType of the virtual machine. It has to be set to any specified value to enable UefiSettings.",
"enum": [
"trustedLaunch",
"confidentialVM"
"confidentialvm"
],
"x-ms-enum": {
"name": "SecurityTypes",
Expand All @@ -16278,7 +16278,7 @@
},
{
"name": "confidentialVM",
"value": "confidentialVM",
"value": "confidentialvm",
"description": "Azure confidential computing offers confidential VMs are for tenants with high security and confidentiality requirements. These VMs provide a strong, hardware-enforced boundary to help meet your security needs. You can use confidential VMs for migrations without making changes to your code, with the platform protecting your VM's state from being read or modified."
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
}
],
"securityProfile": {
"securityType": "confidentialVM",
"securityType": "confidentialvm",
"uefiSettings": {
"vTpmEnabled": true,
"secureBootEnabled": true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
}
],
"securityProfile": {
"securityType": "confidentialVM",
"securityType": "confidentialvm",
"uefiSettings": {
"secureBootEnabled": true,
"vTpmEnabled": true
Expand Down
Loading