@azure/arm-automation 11.0.0-beta.1 → 11.0.0-beta.3
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/CHANGELOG.md +13 -1
- package/README.md +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/dist-esm/src/automationClient.js +1 -1
- package/package.json +3 -3
- package/review/arm-automation.api.md +5 -6
- package/src/automationClient.ts +1 -1
- package/types/arm-automation.d.ts +5 -6
- package/types/tsdoc-metadata.json +1 -1
|
@@ -34,7 +34,7 @@ export class AutomationClient extends coreClient.ServiceClient {
|
|
|
34
34
|
requestContentType: "application/json; charset=utf-8",
|
|
35
35
|
credential: credentials
|
|
36
36
|
};
|
|
37
|
-
const packageDetails = `azsdk-js-arm-automation/11.0.0-beta.
|
|
37
|
+
const packageDetails = `azsdk-js-arm-automation/11.0.0-beta.3`;
|
|
38
38
|
const userAgentPrefix = options.userAgentOptions && options.userAgentOptions.userAgentPrefix
|
|
39
39
|
? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}`
|
|
40
40
|
: `${packageDetails}`;
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"sdk-type": "mgmt",
|
|
4
4
|
"author": "Microsoft Corporation",
|
|
5
5
|
"description": "A generated SDK for AutomationClient.",
|
|
6
|
-
"version": "11.0.0-beta.
|
|
6
|
+
"version": "11.0.0-beta.3",
|
|
7
7
|
"engines": {
|
|
8
8
|
"node": ">=12.0.0"
|
|
9
9
|
},
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"module": "./dist-esm/src/index.js",
|
|
29
29
|
"types": "./types/arm-automation.d.ts",
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"@microsoft/api-extractor": "7.
|
|
31
|
+
"@microsoft/api-extractor": "^7.31.1",
|
|
32
32
|
"@rollup/plugin-commonjs": "^21.0.1",
|
|
33
33
|
"@rollup/plugin-json": "^4.1.0",
|
|
34
34
|
"@rollup/plugin-multi-entry": "^4.1.0",
|
|
@@ -110,4 +110,4 @@
|
|
|
110
110
|
]
|
|
111
111
|
},
|
|
112
112
|
"autoPublish": true
|
|
113
|
-
}
|
|
113
|
+
}
|
|
@@ -535,7 +535,7 @@ export interface ConnectionOperations {
|
|
|
535
535
|
}
|
|
536
536
|
|
|
537
537
|
// @public
|
|
538
|
-
interface
|
|
538
|
+
export interface ConnectionType {
|
|
539
539
|
readonly creationTime?: Date;
|
|
540
540
|
description?: string;
|
|
541
541
|
readonly fieldDefinitions?: {
|
|
@@ -547,7 +547,6 @@ interface ConnectionType_2 {
|
|
|
547
547
|
readonly name?: string;
|
|
548
548
|
readonly type?: string;
|
|
549
549
|
}
|
|
550
|
-
export { ConnectionType_2 as ConnectionType }
|
|
551
550
|
|
|
552
551
|
// @public
|
|
553
552
|
export interface ConnectionTypeAssociationProperty {
|
|
@@ -568,7 +567,7 @@ export interface ConnectionTypeCreateOrUpdateParameters {
|
|
|
568
567
|
}
|
|
569
568
|
|
|
570
569
|
// @public
|
|
571
|
-
export type ConnectionTypeCreateOrUpdateResponse =
|
|
570
|
+
export type ConnectionTypeCreateOrUpdateResponse = ConnectionType;
|
|
572
571
|
|
|
573
572
|
// @public
|
|
574
573
|
export interface ConnectionTypeDeleteOptionalParams extends coreClient.OperationOptions {
|
|
@@ -579,7 +578,7 @@ export interface ConnectionTypeGetOptionalParams extends coreClient.OperationOpt
|
|
|
579
578
|
}
|
|
580
579
|
|
|
581
580
|
// @public
|
|
582
|
-
export type ConnectionTypeGetResponse =
|
|
581
|
+
export type ConnectionTypeGetResponse = ConnectionType;
|
|
583
582
|
|
|
584
583
|
// @public
|
|
585
584
|
export interface ConnectionTypeListByAutomationAccountNextOptionalParams extends coreClient.OperationOptions {
|
|
@@ -598,7 +597,7 @@ export type ConnectionTypeListByAutomationAccountResponse = ConnectionTypeListRe
|
|
|
598
597
|
// @public
|
|
599
598
|
export interface ConnectionTypeListResult {
|
|
600
599
|
nextLink?: string;
|
|
601
|
-
value?:
|
|
600
|
+
value?: ConnectionType[];
|
|
602
601
|
}
|
|
603
602
|
|
|
604
603
|
// @public
|
|
@@ -606,7 +605,7 @@ export interface ConnectionTypeOperations {
|
|
|
606
605
|
createOrUpdate(resourceGroupName: string, automationAccountName: string, connectionTypeName: string, parameters: ConnectionTypeCreateOrUpdateParameters, options?: ConnectionTypeCreateOrUpdateOptionalParams): Promise<ConnectionTypeCreateOrUpdateResponse>;
|
|
607
606
|
delete(resourceGroupName: string, automationAccountName: string, connectionTypeName: string, options?: ConnectionTypeDeleteOptionalParams): Promise<void>;
|
|
608
607
|
get(resourceGroupName: string, automationAccountName: string, connectionTypeName: string, options?: ConnectionTypeGetOptionalParams): Promise<ConnectionTypeGetResponse>;
|
|
609
|
-
listByAutomationAccount(resourceGroupName: string, automationAccountName: string, options?: ConnectionTypeListByAutomationAccountOptionalParams): PagedAsyncIterableIterator<
|
|
608
|
+
listByAutomationAccount(resourceGroupName: string, automationAccountName: string, options?: ConnectionTypeListByAutomationAccountOptionalParams): PagedAsyncIterableIterator<ConnectionType>;
|
|
610
609
|
}
|
|
611
610
|
|
|
612
611
|
// @public
|
package/src/automationClient.ts
CHANGED
|
@@ -144,7 +144,7 @@ export class AutomationClient extends coreClient.ServiceClient {
|
|
|
144
144
|
credential: credentials
|
|
145
145
|
};
|
|
146
146
|
|
|
147
|
-
const packageDetails = `azsdk-js-arm-automation/11.0.0-beta.
|
|
147
|
+
const packageDetails = `azsdk-js-arm-automation/11.0.0-beta.3`;
|
|
148
148
|
const userAgentPrefix =
|
|
149
149
|
options.userAgentOptions && options.userAgentOptions.userAgentPrefix
|
|
150
150
|
? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}`
|
|
@@ -805,7 +805,7 @@ export declare interface ConnectionOperations {
|
|
|
805
805
|
}
|
|
806
806
|
|
|
807
807
|
/** Definition of the connection type. */
|
|
808
|
-
declare interface
|
|
808
|
+
export declare interface ConnectionType {
|
|
809
809
|
/**
|
|
810
810
|
* Gets the id of the resource.
|
|
811
811
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
@@ -840,7 +840,6 @@ declare interface ConnectionType_2 {
|
|
|
840
840
|
/** Gets or sets the description. */
|
|
841
841
|
description?: string;
|
|
842
842
|
}
|
|
843
|
-
export { ConnectionType_2 as ConnectionType }
|
|
844
843
|
|
|
845
844
|
/** The connection type property associated with the entity. */
|
|
846
845
|
export declare interface ConnectionTypeAssociationProperty {
|
|
@@ -865,7 +864,7 @@ export declare interface ConnectionTypeCreateOrUpdateParameters {
|
|
|
865
864
|
}
|
|
866
865
|
|
|
867
866
|
/** Contains response data for the createOrUpdate operation. */
|
|
868
|
-
export declare type ConnectionTypeCreateOrUpdateResponse =
|
|
867
|
+
export declare type ConnectionTypeCreateOrUpdateResponse = ConnectionType;
|
|
869
868
|
|
|
870
869
|
/** Optional parameters. */
|
|
871
870
|
export declare interface ConnectionTypeDeleteOptionalParams extends coreClient.OperationOptions {
|
|
@@ -876,7 +875,7 @@ export declare interface ConnectionTypeGetOptionalParams extends coreClient.Oper
|
|
|
876
875
|
}
|
|
877
876
|
|
|
878
877
|
/** Contains response data for the get operation. */
|
|
879
|
-
export declare type ConnectionTypeGetResponse =
|
|
878
|
+
export declare type ConnectionTypeGetResponse = ConnectionType;
|
|
880
879
|
|
|
881
880
|
/** Optional parameters. */
|
|
882
881
|
export declare interface ConnectionTypeListByAutomationAccountNextOptionalParams extends coreClient.OperationOptions {
|
|
@@ -895,7 +894,7 @@ export declare type ConnectionTypeListByAutomationAccountResponse = ConnectionTy
|
|
|
895
894
|
/** The response model for the list connection type operation. */
|
|
896
895
|
export declare interface ConnectionTypeListResult {
|
|
897
896
|
/** Gets or sets a list of connection types. */
|
|
898
|
-
value?:
|
|
897
|
+
value?: ConnectionType[];
|
|
899
898
|
/** Gets or sets the next link. */
|
|
900
899
|
nextLink?: string;
|
|
901
900
|
}
|
|
@@ -908,7 +907,7 @@ export declare interface ConnectionTypeOperations {
|
|
|
908
907
|
* @param automationAccountName The name of the automation account.
|
|
909
908
|
* @param options The options parameters.
|
|
910
909
|
*/
|
|
911
|
-
listByAutomationAccount(resourceGroupName: string, automationAccountName: string, options?: ConnectionTypeListByAutomationAccountOptionalParams): PagedAsyncIterableIterator<
|
|
910
|
+
listByAutomationAccount(resourceGroupName: string, automationAccountName: string, options?: ConnectionTypeListByAutomationAccountOptionalParams): PagedAsyncIterableIterator<ConnectionType>;
|
|
912
911
|
/**
|
|
913
912
|
* Delete the connection type.
|
|
914
913
|
* @param resourceGroupName Name of an Azure Resource group.
|