Skip to content

Commit

Permalink
Revert "try to fix mutability error"
Browse files Browse the repository at this point in the history
This reverts commit d4aa7a0.
  • Loading branch information
ZhidaLiu committed Jan 20, 2022
1 parent b3a5416 commit f17342a
Showing 1 changed file with 45 additions and 37 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5543,7 +5543,11 @@
},
"provisioningState": {
"description": "Provisioning state for the endpoint deployment.",
"$ref": "#/definitions/DeploymentProvisioningState"
"$ref": "#/definitions/DeploymentProvisioningState",
"readOnly": true,
"x-ms-mutability": [
"read"
]
},
"resources": {
"description": "Indicates compute configuration for the job.\r\nIf not provided, will default to the defaults defined in ResourceConfiguration.",
Expand Down Expand Up @@ -5625,7 +5629,11 @@
},
"provisioningState": {
"description": "Provisioning state for the endpoint.",
"$ref": "#/definitions/EndpointProvisioningState"
"$ref": "#/definitions/EndpointProvisioningState",
"readOnly": true,
"x-ms-mutability": [
"read"
]
}
},
"x-ms-client-name": "BatchEndpointDetails",
Expand Down Expand Up @@ -6699,11 +6707,7 @@
"name": "DeploymentProvisioningState",
"modelAsString": true
},
"additionalProperties": false,
"readOnly": true,
"x-ms-mutability": [
"read"
]
"additionalProperties": false
},
"DistributionConfiguration": {
"description": "Base definition for job distribution configuration.",
Expand Down Expand Up @@ -6970,11 +6974,7 @@
"name": "EndpointProvisioningState",
"modelAsString": true
},
"additionalProperties": false,
"readOnly": true,
"x-ms-mutability": [
"read"
]
"additionalProperties": false
},
"EnvironmentContainer": {
"description": "Container for environment specification versions.",
Expand Down Expand Up @@ -7036,11 +7036,7 @@
"name": "EnvironmentType",
"modelAsString": true
},
"additionalProperties": false,
"readOnly": true,
"x-ms-mutability": [
"read"
]
"additionalProperties": false
},
"EnvironmentVersion": {
"description": "Environment version details.",
Expand Down Expand Up @@ -7069,7 +7065,11 @@
},
"environmentType": {
"description": "Environment type is either user managed or curated by the Azure ML service\r\n<see href=\"https://docs.microsoft.com/en-us/azure/machine-learning/resource-curated-environments\" />",
"$ref": "#/definitions/EnvironmentType"
"$ref": "#/definitions/EnvironmentType",
"readOnly": true,
"x-ms-mutability": [
"read"
]
},
"image": {
"description": "Name of the image that will be used for the environment.\r\n<seealso href=\"https://docs.microsoft.com/en-us/azure/machine-learning/how-to-deploy-custom-docker-image#use-a-custom-base-image\" />",
Expand Down Expand Up @@ -7330,7 +7330,11 @@
},
"status": {
"description": "Status of the job.",
"$ref": "#/definitions/JobStatus"
"$ref": "#/definitions/JobStatus",
"readOnly": true,
"x-ms-mutability": [
"read"
]
}
},
"discriminator": "jobType",
Expand Down Expand Up @@ -7604,11 +7608,19 @@
"properties": {
"mode": {
"description": "Output Delivery Mode.",
"$ref": "#/definitions/OutputDataDeliveryMode"
"$ref": "#/definitions/OutputDataDeliveryMode",
"readOnly": true,
"x-ms-mutability": [
"read"
]
},
"uri": {
"description": "Uri path.",
"$ref": "#/definitions/UriReference",
"readOnly": true,
"x-ms-mutability": [
"read"
],
"x-nullable": true
}
},
Expand Down Expand Up @@ -7700,11 +7712,7 @@
"name": "JobStatus",
"modelAsString": true
},
"additionalProperties": false,
"readOnly": true,
"x-ms-mutability": [
"read"
]
"additionalProperties": false
},
"JobType": {
"description": "Enum to determine the type of job.",
Expand Down Expand Up @@ -8053,7 +8061,11 @@
},
"provisioningState": {
"description": "Provisioning state for the endpoint deployment.",
"$ref": "#/definitions/DeploymentProvisioningState"
"$ref": "#/definitions/DeploymentProvisioningState",
"readOnly": true,
"x-ms-mutability": [
"read"
]
},
"readinessProbe": {
"description": "Readiness probe validates if the container is ready to serve traffic. The properties and defaults are the same as liveness probe.",
Expand Down Expand Up @@ -8145,7 +8157,11 @@
},
"provisioningState": {
"description": "Provisioning state for the endpoint.",
"$ref": "#/definitions/EndpointProvisioningState"
"$ref": "#/definitions/EndpointProvisioningState",
"readOnly": true,
"x-ms-mutability": [
"read"
]
},
"traffic": {
"description": "Percentage of traffic from endpoint to divert to each deployment. Traffic values need to sum to 100.",
Expand Down Expand Up @@ -8287,11 +8303,7 @@
"name": "OutputDataDeliveryMode",
"modelAsString": true
},
"additionalProperties": false,
"readOnly": true,
"x-ms-mutability": [
"read"
]
"additionalProperties": false
},
"OutputPathAssetReference": {
"description": "Reference to an asset via its path in a job output.",
Expand Down Expand Up @@ -9648,11 +9660,7 @@
"x-nullable": true
}
},
"additionalProperties": false,
"readOnly": true,
"x-ms-mutability": [
"read"
]
"additionalProperties": false
},
"UserAssignedIdentityMeta": {
"description": "User assigned identities associated with a resource.",
Expand Down

0 comments on commit f17342a

Please sign in to comment.