@azure/arm-managementpartner 3.0.2-alpha.20250620.1 → 3.0.2-alpha.20250718.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
|
@@ -1,169 +1,169 @@
|
|
|
1
|
-
## API Report File for "@azure/arm-managementpartner"
|
|
2
|
-
|
|
3
|
-
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
|
|
4
|
-
|
|
5
|
-
```ts
|
|
6
|
-
|
|
7
|
-
import * as coreAuth from '@azure/core-auth';
|
|
8
|
-
import * as coreClient from '@azure/core-client';
|
|
9
|
-
import { PagedAsyncIterableIterator } from '@azure/core-paging';
|
|
10
|
-
|
|
11
|
-
// @public (undocumented)
|
|
12
|
-
export class ACEProvisioningManagementPartnerAPI extends coreClient.ServiceClient {
|
|
13
|
-
// (undocumented)
|
|
14
|
-
$host: string;
|
|
15
|
-
constructor(credentials: coreAuth.TokenCredential, options?: ACEProvisioningManagementPartnerAPIOptionalParams);
|
|
16
|
-
// (undocumented)
|
|
17
|
-
apiVersion: string;
|
|
18
|
-
// (undocumented)
|
|
19
|
-
operation: Operation;
|
|
20
|
-
// (undocumented)
|
|
21
|
-
partner: Partner;
|
|
22
|
-
// (undocumented)
|
|
23
|
-
partners: Partners;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
// @public
|
|
27
|
-
export interface ACEProvisioningManagementPartnerAPIOptionalParams extends coreClient.ServiceClientOptions {
|
|
28
|
-
$host?: string;
|
|
29
|
-
apiVersion?: string;
|
|
30
|
-
endpoint?: string;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
// @public
|
|
34
|
-
export interface ErrorModel {
|
|
35
|
-
error?: ExtendedErrorInfo;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
// @public
|
|
39
|
-
export type ErrorResponseCode = string;
|
|
40
|
-
|
|
41
|
-
// @public
|
|
42
|
-
export interface ExtendedErrorInfo {
|
|
43
|
-
code?: ErrorResponseCode;
|
|
44
|
-
message?: string;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
// @public
|
|
48
|
-
export function getContinuationToken(page: unknown): string | undefined;
|
|
49
|
-
|
|
50
|
-
// @public
|
|
51
|
-
export enum KnownErrorResponseCode {
|
|
52
|
-
BadRequest = "BadRequest",
|
|
53
|
-
Conflict = "Conflict",
|
|
54
|
-
NotFound = "NotFound"
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
// @public
|
|
58
|
-
export enum KnownManagementPartnerState {
|
|
59
|
-
Active = "Active",
|
|
60
|
-
Deleted = "Deleted"
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
// @public
|
|
64
|
-
export type ManagementPartnerState = string;
|
|
65
|
-
|
|
66
|
-
// @public
|
|
67
|
-
export interface Operation {
|
|
68
|
-
list(options?: OperationListOptionalParams): PagedAsyncIterableIterator<OperationResponse>;
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
// @public
|
|
72
|
-
export interface OperationDisplay {
|
|
73
|
-
description?: string;
|
|
74
|
-
operation?: string;
|
|
75
|
-
provider?: string;
|
|
76
|
-
resource?: string;
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
// @public
|
|
80
|
-
export interface OperationList {
|
|
81
|
-
nextLink?: string;
|
|
82
|
-
value?: OperationResponse[];
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
// @public
|
|
86
|
-
export interface OperationListNextOptionalParams extends coreClient.OperationOptions {
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
// @public
|
|
90
|
-
export type OperationListNextResponse = OperationList;
|
|
91
|
-
|
|
92
|
-
// @public
|
|
93
|
-
export interface OperationListOptionalParams extends coreClient.OperationOptions {
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
// @public
|
|
97
|
-
export type OperationListResponse = OperationList;
|
|
98
|
-
|
|
99
|
-
// @public
|
|
100
|
-
export interface OperationResponse {
|
|
101
|
-
display?: OperationDisplay;
|
|
102
|
-
name?: string;
|
|
103
|
-
origin?: string;
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
// @public
|
|
107
|
-
export interface Partner {
|
|
108
|
-
create(partnerId: string, options?: PartnerCreateOptionalParams): Promise<PartnerCreateResponse>;
|
|
109
|
-
delete(partnerId: string, options?: PartnerDeleteOptionalParams): Promise<void>;
|
|
110
|
-
get(partnerId: string, options?: PartnerGetOptionalParams): Promise<PartnerGetResponse>;
|
|
111
|
-
update(partnerId: string, options?: PartnerUpdateOptionalParams): Promise<PartnerUpdateResponse>;
|
|
112
|
-
}
|
|
113
|
-
|
|
114
|
-
// @public
|
|
115
|
-
export interface PartnerCreateOptionalParams extends coreClient.OperationOptions {
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
// @public
|
|
119
|
-
export type PartnerCreateResponse = PartnerResponse;
|
|
120
|
-
|
|
121
|
-
// @public
|
|
122
|
-
export interface PartnerDeleteOptionalParams extends coreClient.OperationOptions {
|
|
123
|
-
}
|
|
124
|
-
|
|
125
|
-
// @public
|
|
126
|
-
export interface PartnerGetOptionalParams extends coreClient.OperationOptions {
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
// @public
|
|
130
|
-
export type PartnerGetResponse = PartnerResponse;
|
|
131
|
-
|
|
132
|
-
// @public
|
|
133
|
-
export interface PartnerResponse {
|
|
134
|
-
createdTime?: Date;
|
|
135
|
-
etag?: number;
|
|
136
|
-
readonly id?: string;
|
|
137
|
-
readonly name?: string;
|
|
138
|
-
objectId?: string;
|
|
139
|
-
partnerId?: string;
|
|
140
|
-
partnerName?: string;
|
|
141
|
-
state?: ManagementPartnerState;
|
|
142
|
-
tenantId?: string;
|
|
143
|
-
readonly type?: string;
|
|
144
|
-
updatedTime?: Date;
|
|
145
|
-
version?: number;
|
|
146
|
-
}
|
|
147
|
-
|
|
148
|
-
// @public
|
|
149
|
-
export interface Partners {
|
|
150
|
-
get(options?: PartnersGetOptionalParams): Promise<PartnersGetResponse>;
|
|
151
|
-
}
|
|
152
|
-
|
|
153
|
-
// @public
|
|
154
|
-
export interface PartnersGetOptionalParams extends coreClient.OperationOptions {
|
|
155
|
-
}
|
|
156
|
-
|
|
157
|
-
// @public
|
|
158
|
-
export type PartnersGetResponse = PartnerResponse;
|
|
159
|
-
|
|
160
|
-
// @public
|
|
161
|
-
export interface PartnerUpdateOptionalParams extends coreClient.OperationOptions {
|
|
162
|
-
}
|
|
163
|
-
|
|
164
|
-
// @public
|
|
165
|
-
export type PartnerUpdateResponse = PartnerResponse;
|
|
166
|
-
|
|
167
|
-
// (No @packageDocumentation comment for this package)
|
|
168
|
-
|
|
169
|
-
```
|
|
1
|
+
## API Report File for "@azure/arm-managementpartner"
|
|
2
|
+
|
|
3
|
+
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
|
|
4
|
+
|
|
5
|
+
```ts
|
|
6
|
+
|
|
7
|
+
import * as coreAuth from '@azure/core-auth';
|
|
8
|
+
import * as coreClient from '@azure/core-client';
|
|
9
|
+
import { PagedAsyncIterableIterator } from '@azure/core-paging';
|
|
10
|
+
|
|
11
|
+
// @public (undocumented)
|
|
12
|
+
export class ACEProvisioningManagementPartnerAPI extends coreClient.ServiceClient {
|
|
13
|
+
// (undocumented)
|
|
14
|
+
$host: string;
|
|
15
|
+
constructor(credentials: coreAuth.TokenCredential, options?: ACEProvisioningManagementPartnerAPIOptionalParams);
|
|
16
|
+
// (undocumented)
|
|
17
|
+
apiVersion: string;
|
|
18
|
+
// (undocumented)
|
|
19
|
+
operation: Operation;
|
|
20
|
+
// (undocumented)
|
|
21
|
+
partner: Partner;
|
|
22
|
+
// (undocumented)
|
|
23
|
+
partners: Partners;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
// @public
|
|
27
|
+
export interface ACEProvisioningManagementPartnerAPIOptionalParams extends coreClient.ServiceClientOptions {
|
|
28
|
+
$host?: string;
|
|
29
|
+
apiVersion?: string;
|
|
30
|
+
endpoint?: string;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
// @public
|
|
34
|
+
export interface ErrorModel {
|
|
35
|
+
error?: ExtendedErrorInfo;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
// @public
|
|
39
|
+
export type ErrorResponseCode = string;
|
|
40
|
+
|
|
41
|
+
// @public
|
|
42
|
+
export interface ExtendedErrorInfo {
|
|
43
|
+
code?: ErrorResponseCode;
|
|
44
|
+
message?: string;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
// @public
|
|
48
|
+
export function getContinuationToken(page: unknown): string | undefined;
|
|
49
|
+
|
|
50
|
+
// @public
|
|
51
|
+
export enum KnownErrorResponseCode {
|
|
52
|
+
BadRequest = "BadRequest",
|
|
53
|
+
Conflict = "Conflict",
|
|
54
|
+
NotFound = "NotFound"
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
// @public
|
|
58
|
+
export enum KnownManagementPartnerState {
|
|
59
|
+
Active = "Active",
|
|
60
|
+
Deleted = "Deleted"
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
// @public
|
|
64
|
+
export type ManagementPartnerState = string;
|
|
65
|
+
|
|
66
|
+
// @public
|
|
67
|
+
export interface Operation {
|
|
68
|
+
list(options?: OperationListOptionalParams): PagedAsyncIterableIterator<OperationResponse>;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
// @public
|
|
72
|
+
export interface OperationDisplay {
|
|
73
|
+
description?: string;
|
|
74
|
+
operation?: string;
|
|
75
|
+
provider?: string;
|
|
76
|
+
resource?: string;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
// @public
|
|
80
|
+
export interface OperationList {
|
|
81
|
+
nextLink?: string;
|
|
82
|
+
value?: OperationResponse[];
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
// @public
|
|
86
|
+
export interface OperationListNextOptionalParams extends coreClient.OperationOptions {
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
// @public
|
|
90
|
+
export type OperationListNextResponse = OperationList;
|
|
91
|
+
|
|
92
|
+
// @public
|
|
93
|
+
export interface OperationListOptionalParams extends coreClient.OperationOptions {
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
// @public
|
|
97
|
+
export type OperationListResponse = OperationList;
|
|
98
|
+
|
|
99
|
+
// @public
|
|
100
|
+
export interface OperationResponse {
|
|
101
|
+
display?: OperationDisplay;
|
|
102
|
+
name?: string;
|
|
103
|
+
origin?: string;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
// @public
|
|
107
|
+
export interface Partner {
|
|
108
|
+
create(partnerId: string, options?: PartnerCreateOptionalParams): Promise<PartnerCreateResponse>;
|
|
109
|
+
delete(partnerId: string, options?: PartnerDeleteOptionalParams): Promise<void>;
|
|
110
|
+
get(partnerId: string, options?: PartnerGetOptionalParams): Promise<PartnerGetResponse>;
|
|
111
|
+
update(partnerId: string, options?: PartnerUpdateOptionalParams): Promise<PartnerUpdateResponse>;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
// @public
|
|
115
|
+
export interface PartnerCreateOptionalParams extends coreClient.OperationOptions {
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
// @public
|
|
119
|
+
export type PartnerCreateResponse = PartnerResponse;
|
|
120
|
+
|
|
121
|
+
// @public
|
|
122
|
+
export interface PartnerDeleteOptionalParams extends coreClient.OperationOptions {
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
// @public
|
|
126
|
+
export interface PartnerGetOptionalParams extends coreClient.OperationOptions {
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
// @public
|
|
130
|
+
export type PartnerGetResponse = PartnerResponse;
|
|
131
|
+
|
|
132
|
+
// @public
|
|
133
|
+
export interface PartnerResponse {
|
|
134
|
+
createdTime?: Date;
|
|
135
|
+
etag?: number;
|
|
136
|
+
readonly id?: string;
|
|
137
|
+
readonly name?: string;
|
|
138
|
+
objectId?: string;
|
|
139
|
+
partnerId?: string;
|
|
140
|
+
partnerName?: string;
|
|
141
|
+
state?: ManagementPartnerState;
|
|
142
|
+
tenantId?: string;
|
|
143
|
+
readonly type?: string;
|
|
144
|
+
updatedTime?: Date;
|
|
145
|
+
version?: number;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
// @public
|
|
149
|
+
export interface Partners {
|
|
150
|
+
get(options?: PartnersGetOptionalParams): Promise<PartnersGetResponse>;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
// @public
|
|
154
|
+
export interface PartnersGetOptionalParams extends coreClient.OperationOptions {
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
// @public
|
|
158
|
+
export type PartnersGetResponse = PartnerResponse;
|
|
159
|
+
|
|
160
|
+
// @public
|
|
161
|
+
export interface PartnerUpdateOptionalParams extends coreClient.OperationOptions {
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
// @public
|
|
165
|
+
export type PartnerUpdateResponse = PartnerResponse;
|
|
166
|
+
|
|
167
|
+
// (No @packageDocumentation comment for this package)
|
|
168
|
+
|
|
169
|
+
```
|