You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** All Redis Settings. Few possible keys: rdb-backup-enabled,rdb-storage-connection-string,rdb-backup-frequency,maxmemory-delta,maxmemory-policy,notify-keyspace-events,maxmemory-samples,slowlog-log-slower-than,slowlog-max-len,list-max-ziplist-entries,list-max-ziplist-value,hash-max-ziplist-entries,hash-max-ziplist-value,set-max-intset-entries,zset-max-ziplist-entries,zset-max-ziplist-value etc. */
* NOTE: This property will not be serialized. It can only be populated by the server.
239
+
*/
240
+
readonlyzonalConfiguration?: string;
241
+
}
242
+
243
+
/** Managed service identity (system assigned and/or user assigned identities) */
244
+
exportinterfaceManagedServiceIdentity{
245
+
/**
246
+
* The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
247
+
* NOTE: This property will not be serialized. It can only be populated by the server.
248
+
*/
249
+
readonlyprincipalId?: string;
250
+
/**
251
+
* The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
252
+
* NOTE: This property will not be serialized. It can only be populated by the server.
253
+
*/
254
+
readonlytenantId?: string;
255
+
/** Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed). */
256
+
type: ManagedServiceIdentityType;
257
+
/** The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests. */
* NOTE: This property will not be serialized. It can only be populated by the server.
266
+
*/
267
+
readonlyprincipalId?: string;
268
+
/**
269
+
* The client ID of the assigned identity.
270
+
* NOTE: This property will not be serialized. It can only be populated by the server.
271
+
*/
272
+
readonlyclientId?: string;
224
273
}
225
274
226
275
/** Redis cache access keys. */
@@ -322,6 +371,8 @@ export interface Resource {
322
371
exportinterfaceRedisUpdateParameters{
323
372
/** Resource tags. */
324
373
tags?: {[propertyName: string]: string};
374
+
/** The identity of the resource. */
375
+
identity?: ManagedServiceIdentity;
325
376
/** All Redis Settings. Few possible keys: rdb-backup-enabled,rdb-storage-connection-string,rdb-backup-frequency,maxmemory-delta,maxmemory-policy,notify-keyspace-events,maxmemory-samples,slowlog-log-slower-than,slowlog-max-len,list-max-ziplist-entries,list-max-ziplist-value,hash-max-ziplist-entries,hash-max-ziplist-value,set-max-intset-entries,zset-max-ziplist-entries,zset-max-ziplist-value etc. */
/** A list of availability zones denoting where the resource needs to come from. */
588
639
zones?: string[];
640
+
/** The identity of the resource. */
641
+
identity?: ManagedServiceIdentity;
589
642
/** All Redis Settings. Few possible keys: rdb-backup-enabled,rdb-storage-connection-string,rdb-backup-frequency,maxmemory-delta,maxmemory-policy,notify-keyspace-events,maxmemory-samples,slowlog-log-slower-than,slowlog-max-len,list-max-ziplist-entries,list-max-ziplist-value,hash-max-ziplist-entries,hash-max-ziplist-value,set-max-intset-entries,zset-max-ziplist-entries,zset-max-ziplist-value etc. */
0 commit comments