Skip to content
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"properties": {
"subject": "CN=testdevice1",
"expiry": "Sat, 31 Dec 2039 23:59:59 GMT",
"certificate": "############################################",
"thumbprint": "97388663832D0393C9246CAB4FBA2C8677185A25",
"isVerified": false,
"created": "Thu, 12 Oct 2017 19:23:50 GMT",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@
"type": "Microsoft.Devices/ProvisioningServices",
"id": "/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups//providers/Microsoft.Devices/ProvisioningServices/myFirstProvisioningService",
"tags": {},
"resourcegroup": "myResourceGroup",
"subscriptionid": "91d12660-3dec-467a-be2a-213b5544ddc0",
"sku": {
"name": "S1",
"tier": "Standard",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"subject": "CN=andbucdevice1",
"expiry": "Sat, 31 Dec 2039 23:59:59 GMT",
"thumbprint": "##############################",
"certificate": "###########################",
"isVerified": false,
"created": "Thu, 12 Oct 2017 19:23:50 GMT",
"updated": "Thu, 12 Oct 2017 19:26:56 GMT"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"subject": "CN=testdevice1",
"expiry": "Sat, 31 Dec 2039 23:59:59 GMT",
"thumbprint": "97388663832D0393C9246CAB4FBA2C8677185A25",
"certificate": "######################################",
"isVerified": false,
"created": "Thu, 12 Oct 2017 19:23:50 GMT",
"updated": "Thu, 12 Oct 2017 19:23:50 GMT"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
"value": [
{
"etag": "AAAAAAAADGk=",
"resourcegroup": "myResourceGroup",
"subscriptionid": "91d12660-3dec-467a-be2a-213b5544ddc0",
"name": "myFirstProvisioningService",
"location": "eastus",
"properties": {
Expand All @@ -30,6 +32,8 @@
},
{
"etag": "AAAAAAAADGk=",
"resourcegroup": "myResourceGroup",
"subscriptionid": "91d12660-3dec-467a-be2a-213b5544ddc0",
"name": "mySecondProvisioningService",
"location": "eastus",
"properties": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
"value": [
{
"etag": "AAAAAAAADGk=",
"resourcegroup": "myResourceGroup",
"subscriptionid": "91d12660-3dec-467a-be2a-213b5544ddc0",
"name": "myFirstProvisioningService",
"location": "eastus",
"properties": {
Expand All @@ -29,6 +31,8 @@
},
{
"etag": "AAAAAAAADGk=",
"resourcegroup": "myResourceGroup",
"subscriptionid": "91d12660-3dec-467a-be2a-213b5544ddc0",
"name": "mySecondProvisioningService",
"location": "eastus",
"properties": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@
"tags": {
"foo": "bar"
},
"subscriptionid": "91d12660-3dec-467a-be2a-213b5544ddc0",
"resourcegroup": "myResourceGroup",
"sku": {
"name": "S1",
"tier": "Standard",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"properties": {
"subject": "CN=andbucdevice1",
"expiry": "Sat, 31 Dec 2039 23:59:59 GMT",
"certificate": "#####################################",
"thumbprint": "97388663832D0393C9246CAB4FBA2C8677185A25",
"isVerified": true,
"created": "Thu, 12 Oct 2017 19:23:50 GMT",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1716,6 +1716,11 @@
"type": "boolean",
"readOnly": true
},
"certificate": {
"description": "base-64 representation of X509 certificate .cer file or just .pem file content.",
"type": "string",
"readOnly": true
},
"created": {
"description": "The certificate's creation date and time.",
"type": "string",
Expand Down Expand Up @@ -1765,6 +1770,14 @@
"description": "The Etag field is *not* required. If it is provided in the response body, it must also be provided as a header per the normal ETag convention.",
"type": "string"
},
"resourcegroup": {
"description": "The resource group name uniquely identifies the resource group within the user subscriptionId.",
"type": "string"
},
"subscriptionid": {
"description": "The subscriptionId for the Azure user",
"type": "string"
},
"properties": {
"description": "Service specific properties for a provisioning service",
"$ref": "#/definitions/IotDpsPropertiesDescription"
Expand Down Expand Up @@ -2440,6 +2453,11 @@
"type": "boolean",
"description": "Indicate if the certificate is verified by owner of private key."
},
"certificate": {
"description": "base-64 representation of X509 certificate .cer file or just .pem file content.",
"type": "string",
"format": "byte"
},
"created": {
"type": "string",
"description": "Certificate created time."
Expand Down