@azure/arm-automation 11.0.0-alpha.20250613.1 → 11.0.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 +1 -1
- package/review/arm-automation.api.md +8 -10
package/package.json
CHANGED
|
@@ -660,13 +660,12 @@ export type CountType = string;
|
|
|
660
660
|
export type CreatedByType = string;
|
|
661
661
|
|
|
662
662
|
// @public
|
|
663
|
-
interface
|
|
663
|
+
export interface Credential extends ProxyResource {
|
|
664
664
|
readonly creationTime?: Date;
|
|
665
665
|
description?: string;
|
|
666
666
|
readonly lastModifiedTime?: Date;
|
|
667
667
|
readonly userName?: string;
|
|
668
668
|
}
|
|
669
|
-
export { Credential_2 as Credential }
|
|
670
669
|
|
|
671
670
|
// @public
|
|
672
671
|
export interface CredentialCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
@@ -681,7 +680,7 @@ export interface CredentialCreateOrUpdateParameters {
|
|
|
681
680
|
}
|
|
682
681
|
|
|
683
682
|
// @public
|
|
684
|
-
export type CredentialCreateOrUpdateResponse =
|
|
683
|
+
export type CredentialCreateOrUpdateResponse = Credential;
|
|
685
684
|
|
|
686
685
|
// @public
|
|
687
686
|
export interface CredentialDeleteOptionalParams extends coreClient.OperationOptions {
|
|
@@ -692,7 +691,7 @@ export interface CredentialGetOptionalParams extends coreClient.OperationOptions
|
|
|
692
691
|
}
|
|
693
692
|
|
|
694
693
|
// @public
|
|
695
|
-
export type CredentialGetResponse =
|
|
694
|
+
export type CredentialGetResponse = Credential;
|
|
696
695
|
|
|
697
696
|
// @public
|
|
698
697
|
export interface CredentialListByAutomationAccountNextOptionalParams extends coreClient.OperationOptions {
|
|
@@ -711,7 +710,7 @@ export type CredentialListByAutomationAccountResponse = CredentialListResult;
|
|
|
711
710
|
// @public
|
|
712
711
|
export interface CredentialListResult {
|
|
713
712
|
nextLink?: string;
|
|
714
|
-
value?:
|
|
713
|
+
value?: Credential[];
|
|
715
714
|
}
|
|
716
715
|
|
|
717
716
|
// @public
|
|
@@ -719,7 +718,7 @@ export interface CredentialOperations {
|
|
|
719
718
|
createOrUpdate(resourceGroupName: string, automationAccountName: string, credentialName: string, parameters: CredentialCreateOrUpdateParameters, options?: CredentialCreateOrUpdateOptionalParams): Promise<CredentialCreateOrUpdateResponse>;
|
|
720
719
|
delete(resourceGroupName: string, automationAccountName: string, credentialName: string, options?: CredentialDeleteOptionalParams): Promise<void>;
|
|
721
720
|
get(resourceGroupName: string, automationAccountName: string, credentialName: string, options?: CredentialGetOptionalParams): Promise<CredentialGetResponse>;
|
|
722
|
-
listByAutomationAccount(resourceGroupName: string, automationAccountName: string, options?: CredentialListByAutomationAccountOptionalParams): PagedAsyncIterableIterator<
|
|
721
|
+
listByAutomationAccount(resourceGroupName: string, automationAccountName: string, options?: CredentialListByAutomationAccountOptionalParams): PagedAsyncIterableIterator<Credential>;
|
|
723
722
|
update(resourceGroupName: string, automationAccountName: string, credentialName: string, parameters: CredentialUpdateParameters, options?: CredentialUpdateOptionalParams): Promise<CredentialUpdateResponse>;
|
|
724
723
|
}
|
|
725
724
|
|
|
@@ -736,7 +735,7 @@ export interface CredentialUpdateParameters {
|
|
|
736
735
|
}
|
|
737
736
|
|
|
738
737
|
// @public
|
|
739
|
-
export type CredentialUpdateResponse =
|
|
738
|
+
export type CredentialUpdateResponse = Credential;
|
|
740
739
|
|
|
741
740
|
// @public
|
|
742
741
|
export interface DeletedAutomationAccount {
|
|
@@ -1325,7 +1324,7 @@ export interface HybridRunbookWorker extends Resource {
|
|
|
1325
1324
|
readonly systemData?: SystemData;
|
|
1326
1325
|
vmResourceId?: string;
|
|
1327
1326
|
workerName?: string;
|
|
1328
|
-
workerType?:
|
|
1327
|
+
workerType?: WorkerType;
|
|
1329
1328
|
}
|
|
1330
1329
|
|
|
1331
1330
|
// @public
|
|
@@ -3750,8 +3749,7 @@ export interface WindowsProperties {
|
|
|
3750
3749
|
export type WindowsUpdateClasses = string;
|
|
3751
3750
|
|
|
3752
3751
|
// @public
|
|
3753
|
-
type
|
|
3754
|
-
export { WorkerType_2 as WorkerType }
|
|
3752
|
+
export type WorkerType = string;
|
|
3755
3753
|
|
|
3756
3754
|
// (No @packageDocumentation comment for this package)
|
|
3757
3755
|
|