@azure/arm-servicebus 6.2.0-alpha.20250613.1 → 6.2.0-alpha.20250616.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -232,8 +232,7 @@ export interface Identity {
|
|
|
232
232
|
}
|
|
233
233
|
|
|
234
234
|
// @public
|
|
235
|
-
type
|
|
236
|
-
export { KeyType_2 as KeyType }
|
|
235
|
+
export type KeyType = "PrimaryKey" | "SecondaryKey";
|
|
237
236
|
|
|
238
237
|
// @public
|
|
239
238
|
export interface KeyVaultProperties {
|
|
@@ -831,7 +830,7 @@ export type QueuesRegenerateKeysResponse = AccessKeys;
|
|
|
831
830
|
// @public
|
|
832
831
|
export interface RegenerateAccessKeyParameters {
|
|
833
832
|
key?: string;
|
|
834
|
-
keyType:
|
|
833
|
+
keyType: KeyType;
|
|
835
834
|
}
|
|
836
835
|
|
|
837
836
|
// @public
|