Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Hub Generated] Review request for Microsoft.ContainerInstance to add version stable/2021-07-01 #15721

Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Adding subnet IDs
  • Loading branch information
joseph-porter committed Jun 22, 2021
commit c9c01c821a902782ef3405c62c09f45cc01692cb
Original file line number Diff line number Diff line change
@@ -1295,6 +1295,13 @@
"description": "The network profile information for a container group.",
"$ref": "#/definitions/ContainerGroupNetworkProfile"
},
"subnetIds": {
"type": "array",
"description": "The subnet resource IDs for a container group.",
"items" : {
"$ref": "#/definitions/VirtualNetworkSubnetId"
}
},
"dnsConfig": {
"description": "The DNS config information for a container group.",
"$ref": "#/definitions/DnsConfiguration"
@@ -1461,6 +1468,23 @@
"id"
]
},
"VirtualNetworkSubnetId": {
"description": "Virtual network and subnet resource identifier.",
"type": "object",
"properties": {
"id": {
"description": "Resource ID of virtual network and subnet.",
"type": "string"
},
"name": {
"description": "Friendly name for the subnet.",
"type": "string"
}
},
"required": [
"id"
]
},
"IpAddress": {
"description": "IP address for the container group.",
"type": "object",