-
Notifications
You must be signed in to change notification settings - Fork 5.6k
[Iothub] Added new routing source [version 2021-02-01-preview] #13069
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
Changes from 1 commit
4aa12ea
c1c5a58
94248f2
00f85fa
2aed63d
95b88b5
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||
|---|---|---|---|---|
|
|
@@ -3134,7 +3134,8 @@ | |||
| "TwinChangeEvents", | ||||
| "DeviceLifecycleEvents", | ||||
| "DeviceJobLifecycleEvents", | ||||
| "DigitalTwinChangeEvents" | ||||
| "DigitalTwinChangeEvents", | ||||
| "DeviceConnectionStateEvents" | ||||
| ], | ||||
| "type": "string", | ||||
| "x-ms-enum": { | ||||
|
|
@@ -4240,8 +4241,18 @@ | |||
| "readOnly": true | ||||
| }, | ||||
| "type": { | ||||
| "description": "Identity type. Only allowed values are SystemAssigned and UserAssigned. Comma separated if both for ex: SystemAssigned,UserAssigned", | ||||
| "type": "string" | ||||
| "description": "The type of identity used for the resource. The type 'SystemAssigned,UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the service.", | ||||
| "type": "string", | ||||
| "enum": [ | ||||
| "SystemAssigned", | ||||
| "UserAssigned", | ||||
| "SystemAssigned,UserAssigned", | ||||
| "None" | ||||
| ], | ||||
| "x-ms-enum": { | ||||
| "name": "ResourceIdentityType", | ||||
| "modelAsString": true | ||||
|
||||
| "Identity": { |
These are the guidance for RPs. In the common definition also, for identity -> modelAsString is set to false to allow strict validation. I would leave it up to you to make the call here. Signing off from ARM side.
For more details: http://azure.github.io/autorest/extensions/#x-ms-enum
Uh oh!
There was an error while loading. Please reload this page.