@aws-sdk/client-rum 3.758.0 → 3.760.0

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.
@@ -23,6 +23,10 @@ import {
23
23
  DeleteAppMonitorCommandInput,
24
24
  DeleteAppMonitorCommandOutput,
25
25
  } from "../commands/DeleteAppMonitorCommand";
26
+ import {
27
+ DeleteResourcePolicyCommandInput,
28
+ DeleteResourcePolicyCommandOutput,
29
+ } from "../commands/DeleteResourcePolicyCommand";
26
30
  import {
27
31
  DeleteRumMetricsDestinationCommandInput,
28
32
  DeleteRumMetricsDestinationCommandOutput,
@@ -35,6 +39,10 @@ import {
35
39
  GetAppMonitorDataCommandInput,
36
40
  GetAppMonitorDataCommandOutput,
37
41
  } from "../commands/GetAppMonitorDataCommand";
42
+ import {
43
+ GetResourcePolicyCommandInput,
44
+ GetResourcePolicyCommandOutput,
45
+ } from "../commands/GetResourcePolicyCommand";
38
46
  import {
39
47
  ListAppMonitorsCommandInput,
40
48
  ListAppMonitorsCommandOutput,
@@ -47,6 +55,10 @@ import {
47
55
  ListTagsForResourceCommandInput,
48
56
  ListTagsForResourceCommandOutput,
49
57
  } from "../commands/ListTagsForResourceCommand";
58
+ import {
59
+ PutResourcePolicyCommandInput,
60
+ PutResourcePolicyCommandOutput,
61
+ } from "../commands/PutResourcePolicyCommand";
50
62
  import {
51
63
  PutRumEventsCommandInput,
52
64
  PutRumEventsCommandOutput,
@@ -91,6 +103,10 @@ export declare const se_DeleteAppMonitorCommand: (
91
103
  input: DeleteAppMonitorCommandInput,
92
104
  context: __SerdeContext
93
105
  ) => Promise<__HttpRequest>;
106
+ export declare const se_DeleteResourcePolicyCommand: (
107
+ input: DeleteResourcePolicyCommandInput,
108
+ context: __SerdeContext
109
+ ) => Promise<__HttpRequest>;
94
110
  export declare const se_DeleteRumMetricsDestinationCommand: (
95
111
  input: DeleteRumMetricsDestinationCommandInput,
96
112
  context: __SerdeContext
@@ -103,6 +119,10 @@ export declare const se_GetAppMonitorDataCommand: (
103
119
  input: GetAppMonitorDataCommandInput,
104
120
  context: __SerdeContext
105
121
  ) => Promise<__HttpRequest>;
122
+ export declare const se_GetResourcePolicyCommand: (
123
+ input: GetResourcePolicyCommandInput,
124
+ context: __SerdeContext
125
+ ) => Promise<__HttpRequest>;
106
126
  export declare const se_ListAppMonitorsCommand: (
107
127
  input: ListAppMonitorsCommandInput,
108
128
  context: __SerdeContext
@@ -115,6 +135,10 @@ export declare const se_ListTagsForResourceCommand: (
115
135
  input: ListTagsForResourceCommandInput,
116
136
  context: __SerdeContext
117
137
  ) => Promise<__HttpRequest>;
138
+ export declare const se_PutResourcePolicyCommand: (
139
+ input: PutResourcePolicyCommandInput,
140
+ context: __SerdeContext
141
+ ) => Promise<__HttpRequest>;
118
142
  export declare const se_PutRumEventsCommand: (
119
143
  input: PutRumEventsCommandInput,
120
144
  context: __SerdeContext
@@ -159,6 +183,10 @@ export declare const de_DeleteAppMonitorCommand: (
159
183
  output: __HttpResponse,
160
184
  context: __SerdeContext
161
185
  ) => Promise<DeleteAppMonitorCommandOutput>;
186
+ export declare const de_DeleteResourcePolicyCommand: (
187
+ output: __HttpResponse,
188
+ context: __SerdeContext
189
+ ) => Promise<DeleteResourcePolicyCommandOutput>;
162
190
  export declare const de_DeleteRumMetricsDestinationCommand: (
163
191
  output: __HttpResponse,
164
192
  context: __SerdeContext
@@ -171,6 +199,10 @@ export declare const de_GetAppMonitorDataCommand: (
171
199
  output: __HttpResponse,
172
200
  context: __SerdeContext
173
201
  ) => Promise<GetAppMonitorDataCommandOutput>;
202
+ export declare const de_GetResourcePolicyCommand: (
203
+ output: __HttpResponse,
204
+ context: __SerdeContext
205
+ ) => Promise<GetResourcePolicyCommandOutput>;
174
206
  export declare const de_ListAppMonitorsCommand: (
175
207
  output: __HttpResponse,
176
208
  context: __SerdeContext
@@ -183,6 +215,10 @@ export declare const de_ListTagsForResourceCommand: (
183
215
  output: __HttpResponse,
184
216
  context: __SerdeContext
185
217
  ) => Promise<ListTagsForResourceCommandOutput>;
218
+ export declare const de_PutResourcePolicyCommand: (
219
+ output: __HttpResponse,
220
+ context: __SerdeContext
221
+ ) => Promise<PutResourcePolicyCommandOutput>;
186
222
  export declare const de_PutRumEventsCommand: (
187
223
  output: __HttpResponse,
188
224
  context: __SerdeContext
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-rum",
3
3
  "description": "AWS SDK for JavaScript Rum Client for Node.js, Browser and React Native",
4
- "version": "3.758.0",
4
+ "version": "3.760.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-rum",