Skip to content
Closed
Show file tree
Hide file tree
Changes from 3 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 @@ -88,7 +88,8 @@
},
"status": {
"lastOperationError": {}
}
},
"portalFqdn": "fleet1-namespace1-abc123.flt.eastus.azmk8s.io"
},
"eTag": "\"EtagValue\"",
"tags": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,8 @@
},
"status": {
"lastOperationError": {}
}
},
"portalFqdn": "fleet1-namespace1-abc123.flt.eastus.azmk8s.io"
},
"eTag": "\"EtagValue\"",
"tags": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,10 @@ model FleetManagedNamespaceProperties {
@visibility(Lifecycle.Read)
@doc("Status information of the last operation for fleet managed namespace.")
status?: FleetManagedNamespaceStatus;

@visibility(Lifecycle.Read)
@doc("The Azure Portal FQDN of the Fleet hub.")
portalFqdn?: string;
}

@added(Versions.v2025_08_01_preview)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,8 @@
},
"status": {
"lastOperationError": {}
}
},
"portalFqdn": "fleet1-namespace1-abc123.flt.eastus.azmk8s.io"
},
"eTag": "\"EtagValue\"",
"tags": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,8 @@
},
"status": {
"lastOperationError": {}
}
},
"portalFqdn": "fleet1-namespace1-abc123.flt.eastus.azmk8s.io"
},
"eTag": "\"EtagValue\"",
"tags": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3430,6 +3430,11 @@
"$ref": "#/definitions/FleetManagedNamespaceStatus",
"description": "Status information of the last operation for fleet managed namespace.",
"readOnly": true
},
"portalFqdn": {
"type": "string",
"description": "The Azure Portal FQDN of the Fleet hub.",
"readOnly": true
}
},
"required": [
Expand Down
Loading