File tree Expand file tree Collapse file tree 2 files changed +26
-2
lines changed
specification/keyvault/resource-manager
Microsoft.KeyVault/preview/2021-06-01-preview Expand file tree Collapse file tree 2 files changed +26
-2
lines changed Original file line number Diff line number Diff line change 423
423
"rotationPolicy" : {
424
424
"$ref" : " #/definitions/RotationPolicy" ,
425
425
"description" : " Key rotation policy in response. It will be used for both output and input. Omitted if empty"
426
+ },
427
+ "release_policy" : {
428
+ "$ref" : " #/definitions/KeyReleasePolicy" ,
429
+ "description" : " Key release policy in response. It will be used for both output and input. Omitted if empty"
426
430
}
427
431
},
428
432
"description" : " The properties of the key." ,
473
477
},
474
478
"readOnly" : true ,
475
479
"x-nullable" : false
480
+ },
481
+ "exportable" : {
482
+ "type" : " boolean" ,
483
+ "description" : " Indicates if the private key can be exported."
476
484
}
477
485
},
478
486
"description" : " The object attributes managed by the Azure Key Vault service." ,
614
622
}
615
623
},
616
624
"type" : " object"
625
+ },
626
+ "KeyReleasePolicy" : {
627
+ "properties" : {
628
+ "contentType" : {
629
+ "description" : " Content type and version of key release policy" ,
630
+ "type" : " string" ,
631
+ "default" : " application/json; charset=utf-8"
632
+ },
633
+ "data" : {
634
+ "description" : " Blob encoding the policy rules under which the key can be released." ,
635
+ "type" : " string" ,
636
+ "format" : " base64url"
637
+ }
638
+ },
639
+ "type" : " object"
617
640
}
618
641
},
619
642
"parameters" : {
Original file line number Diff line number Diff line change @@ -160,11 +160,12 @@ input-file:
160
160
` ` ` yaml
161
161
directive:
162
162
- suppress:
163
+ - R3016 # The 'release_policy' property for KeyCreateParameters does not support camelCase.
163
164
- R3026 # The 'PrivateEndpointConnection' and 'PrivateLinkResource' sub-resources don't define PATCH as per Network Team's specification.
164
165
- R3025 # The 'PrivateLinkResource' is only accessible via List operation; does not define GET as per Network Team's specification.
165
166
- R4015 # The 'MHSMPrivateEndpointConnection' sub-resource doesn't define List as per Network Team's specification.
166
- - R2005 # The 'ManagedHsms_PurgeDeleted' operation should not return a mix of 202 and syncronous return types (200, 201, 204) as directed by SDK team.
167
- - R4009 # Vault object is the only one that need to be tracked with SystemData
167
+ - R2005 # The 'ManagedHsms_PurgeDeleted' operation should not return a mix of 202 and syncronous return types (200, 201, 204) as directed by SDK team.
168
+ - R4009 # Vault object is the only one that need to be tracked with SystemData
168
169
` ` `
169
170
170
171
---
You can’t perform that action at this time.
0 commit comments