Skip to content

Commit

Permalink
reflect comment
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhidaLiu committed Sep 14, 2023
1 parent 9019e04 commit 9b85252
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 34 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"properties": {
"category": "ContainerRegistry",
"expiryTime": "2024-03-15T14:30:00Z",
"target": "www.facebook.com",
"target": "target_url",
"authType": "None"
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -189,9 +189,7 @@
"Retry-After": {
"description": "Duration the client should wait between requests, in seconds.",
"type": "integer",
"format": "int32",
"maximum": 600,
"minimum": 10
"format": "int32"
}
}
},
Expand Down Expand Up @@ -758,9 +756,7 @@
"Retry-After": {
"description": "Duration the client should wait between requests, in seconds.",
"type": "integer",
"format": "int32",
"maximum": 600,
"minimum": 10
"format": "int32"
}
}
},
Expand Down Expand Up @@ -2429,32 +2425,14 @@
"additionalProperties": {
"description": "Outbound Rule for the managed network of a machine learning workspace.",
"$ref": "#/definitions/OutboundRule"
},
"x-nullable": true
}
},
"status": {
"description": "Status of the Provisioning for the managed network of a machine learning workspace.",
"$ref": "#/definitions/ManagedNetworkProvisionStatus"
}
}
},
"ManagedNetworkSettingsEx": {
"type": "object",
"allOf": [
{
"$ref": "#/definitions/ManagedNetworkSettings"
}
],
"properties": {
"changeableIsolationModes": {
"type": "array",
"items": {
"$ref": "#/definitions/IsolationMode"
},
"readOnly": true
}
}
},
"ManagedNetworkStatus": {
"description": "Status for the managed network of a machine learning workspace.",
"enum": [
Expand Down Expand Up @@ -2572,22 +2550,22 @@
}
},
"OutboundRule": {
"description": "Outbound Rule for the managed network of a machine learning workspace.",
"description": "Outbound rule for the managed network of a machine learning workspace.",
"required": [
"type"
],
"type": "object",
"properties": {
"category": {
"description": "Category of a managed network Outbound Rule of a machine learning workspace.",
"description": "Category of a managed network outbound rule of a machine learning workspace.",
"$ref": "#/definitions/RuleCategory"
},
"status": {
"description": "Type of a managed network Outbound Rule of a machine learning workspace.",
"description": "Type of a managed network outbound rule of a machine learning workspace.",
"$ref": "#/definitions/RuleStatus"
},
"type": {
"description": "Type of a managed network Outbound Rule of a machine learning workspace.",
"description": "Type of a managed network outbound rule of a machine learning workspace.",
"$ref": "#/definitions/RuleType"
}
},
Expand Down Expand Up @@ -2743,7 +2721,8 @@
"type": "object",
"properties": {
"serviceResourceId": {
"type": "string"
"type": "string",
"format": "arm-id"
},
"sparkEnabled": {
"type": "boolean"
Expand Down Expand Up @@ -3203,13 +3182,17 @@
"$ref": "#/definitions/ConnectionCategory"
},
"createdByWorkspaceArmId": {
"type": "string"
"description": "The arm id of the workspace which created this connection",
"type": "string",
"format": "arm-id",
"readOnly": true
},
"expiryTime": {
"format": "date-time",
"type": "string"
},
"isSharedToAll": {
"description": "whether this connection will be shared to all the project workspace under the hub",
"type": "boolean"
},
"metadata": {
Expand All @@ -3219,6 +3202,7 @@
}
},
"sharedUserList": {
"description": "list of user id who can access this connection",
"type": "array",
"items": {
"type": "string"
Expand Down Expand Up @@ -3435,7 +3419,7 @@
}
},
"managedNetwork": {
"$ref": "#/definitions/ManagedNetworkSettingsEx"
"$ref": "#/definitions/ManagedNetworkSettings"
},
"mlFlowTrackingUri": {
"description": "The URI associated with this workspace that machine learning flow must point at to set up tracking.",
Expand Down Expand Up @@ -3602,7 +3586,7 @@
"type": "string"
},
"managedNetwork": {
"$ref": "#/definitions/ManagedNetworkSettingsEx"
"$ref": "#/definitions/ManagedNetworkSettings"
},
"primaryUserAssignedIdentity": {
"description": "The user assigned identity resource id that represents the workspace identity.",
Expand Down

0 comments on commit 9b85252

Please sign in to comment.