oci-mediaservices 2.56.0 → 2.58.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/lib/client.d.ts +70 -50
- package/lib/client.js +96 -50
- package/lib/client.js.map +1 -1
- package/lib/request/change-media-asset-compartment-request.d.ts +1 -1
- package/lib/request/change-media-workflow-compartment-request.d.ts +1 -1
- package/lib/request/change-media-workflow-configuration-compartment-request.d.ts +1 -1
- package/lib/request/change-media-workflow-job-compartment-request.d.ts +1 -1
- package/lib/request/change-stream-distribution-channel-compartment-request.d.ts +1 -1
- package/lib/request/create-media-asset-request.d.ts +1 -1
- package/lib/request/create-media-workflow-configuration-request.d.ts +1 -1
- package/lib/request/create-media-workflow-job-request.d.ts +1 -1
- package/lib/request/create-media-workflow-request.d.ts +1 -1
- package/lib/request/create-stream-cdn-config-request.d.ts +1 -1
- package/lib/request/create-stream-distribution-channel-request.d.ts +1 -1
- package/lib/request/create-stream-packaging-config-request.d.ts +1 -1
- package/lib/request/delete-media-asset-distribution-channel-attachment-request.d.ts +1 -1
- package/lib/request/delete-media-asset-request.d.ts +1 -1
- package/lib/request/delete-media-workflow-configuration-request.d.ts +1 -1
- package/lib/request/delete-media-workflow-job-request.d.ts +1 -1
- package/lib/request/delete-media-workflow-request.d.ts +1 -1
- package/lib/request/delete-stream-cdn-config-request.d.ts +1 -1
- package/lib/request/delete-stream-distribution-channel-request.d.ts +1 -1
- package/lib/request/delete-stream-packaging-config-request.d.ts +1 -1
- package/lib/request/generate-playlist-request.d.ts +1 -1
- package/lib/request/generate-session-token-request.d.ts +1 -1
- package/lib/request/get-media-asset-distribution-channel-attachment-request.d.ts +1 -1
- package/lib/request/get-media-asset-request.d.ts +1 -1
- package/lib/request/get-media-workflow-configuration-request.d.ts +1 -1
- package/lib/request/get-media-workflow-job-fact-request.d.ts +1 -1
- package/lib/request/get-media-workflow-job-request.d.ts +1 -1
- package/lib/request/get-media-workflow-request.d.ts +1 -1
- package/lib/request/get-stream-cdn-config-request.d.ts +1 -1
- package/lib/request/get-stream-distribution-channel-request.d.ts +1 -1
- package/lib/request/get-stream-packaging-config-request.d.ts +1 -1
- package/lib/request/ingest-stream-distribution-channel-request.d.ts +1 -1
- package/lib/request/list-media-asset-distribution-channel-attachments-request.d.ts +1 -1
- package/lib/request/list-media-assets-request.d.ts +1 -1
- package/lib/request/list-media-workflow-configurations-request.d.ts +1 -1
- package/lib/request/list-media-workflow-job-facts-request.d.ts +1 -1
- package/lib/request/list-media-workflow-jobs-request.d.ts +1 -1
- package/lib/request/list-media-workflow-task-declarations-request.d.ts +1 -1
- package/lib/request/list-media-workflows-request.d.ts +1 -1
- package/lib/request/list-stream-cdn-configs-request.d.ts +1 -1
- package/lib/request/list-stream-distribution-channels-request.d.ts +1 -1
- package/lib/request/list-stream-packaging-configs-request.d.ts +1 -1
- package/lib/request/list-system-media-workflows-request.d.ts +1 -1
- package/lib/request/update-media-asset-request.d.ts +1 -1
- package/lib/request/update-media-workflow-configuration-request.d.ts +1 -1
- package/lib/request/update-media-workflow-job-request.d.ts +1 -1
- package/lib/request/update-media-workflow-request.d.ts +1 -1
- package/lib/request/update-stream-cdn-config-request.d.ts +1 -1
- package/lib/request/update-stream-distribution-channel-request.d.ts +1 -1
- package/lib/request/update-stream-packaging-config-request.d.ts +1 -1
- package/package.json +3 -3
package/lib/client.d.ts
CHANGED
|
@@ -25,6 +25,7 @@ export declare enum MediaServicesApiKeys {
|
|
|
25
25
|
export declare class MediaServicesClient {
|
|
26
26
|
protected static serviceEndpointTemplate: string;
|
|
27
27
|
protected static endpointServiceName: string;
|
|
28
|
+
protected "_realmSpecificEndpointTemplateEnabled": boolean;
|
|
28
29
|
protected "_endpoint": string;
|
|
29
30
|
protected "_defaultHeaders": any;
|
|
30
31
|
protected "_waiters": MediaServicesWaiter;
|
|
@@ -32,6 +33,9 @@ export declare class MediaServicesClient {
|
|
|
32
33
|
protected _circuitBreaker: null;
|
|
33
34
|
protected _httpOptions: any;
|
|
34
35
|
targetService: string;
|
|
36
|
+
protected _regionId: string;
|
|
37
|
+
protected "_region": common.Region;
|
|
38
|
+
protected _lastSetRegionOrRegionId: string;
|
|
35
39
|
protected _httpClient: common.HttpClient;
|
|
36
40
|
constructor(params: common.AuthParams, clientConfiguration?: common.ClientConfiguration);
|
|
37
41
|
/**
|
|
@@ -44,6 +48,12 @@ export declare class MediaServicesClient {
|
|
|
44
48
|
*/
|
|
45
49
|
set endpoint(endpoint: string);
|
|
46
50
|
get logger(): import("oci-common/lib/log").Logger;
|
|
51
|
+
/**
|
|
52
|
+
* Determines whether realm specific endpoint should be used or not.
|
|
53
|
+
* Set realmSpecificEndpointTemplateEnabled to "true" if the user wants to enable use of realm specific endpoint template, otherwise set it to "false"
|
|
54
|
+
* @param realmSpecificEndpointTemplateEnabled flag to enable the use of realm specific endpoint template
|
|
55
|
+
*/
|
|
56
|
+
set useRealmSpecificEndpointTemplate(realmSpecificEndpointTemplateEnabled: boolean);
|
|
47
57
|
/**
|
|
48
58
|
* Sets the region to call (ex, Region.US_PHOENIX_1).
|
|
49
59
|
* Note, this will call {@link #endpoint(String) endpoint} after resolving the endpoint.
|
|
@@ -78,7 +88,7 @@ export declare class MediaServicesClient {
|
|
|
78
88
|
* @param ChangeMediaAssetCompartmentRequest
|
|
79
89
|
* @return ChangeMediaAssetCompartmentResponse
|
|
80
90
|
* @throws OciError when an error occurs
|
|
81
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
91
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/mediaservices/ChangeMediaAssetCompartment.ts.html |here} to see how to use ChangeMediaAssetCompartment API.
|
|
82
92
|
*/
|
|
83
93
|
changeMediaAssetCompartment(changeMediaAssetCompartmentRequest: requests.ChangeMediaAssetCompartmentRequest): Promise<responses.ChangeMediaAssetCompartmentResponse>;
|
|
84
94
|
/**
|
|
@@ -87,7 +97,7 @@ export declare class MediaServicesClient {
|
|
|
87
97
|
* @param ChangeMediaWorkflowCompartmentRequest
|
|
88
98
|
* @return ChangeMediaWorkflowCompartmentResponse
|
|
89
99
|
* @throws OciError when an error occurs
|
|
90
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
100
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/mediaservices/ChangeMediaWorkflowCompartment.ts.html |here} to see how to use ChangeMediaWorkflowCompartment API.
|
|
91
101
|
*/
|
|
92
102
|
changeMediaWorkflowCompartment(changeMediaWorkflowCompartmentRequest: requests.ChangeMediaWorkflowCompartmentRequest): Promise<responses.ChangeMediaWorkflowCompartmentResponse>;
|
|
93
103
|
/**
|
|
@@ -96,7 +106,7 @@ export declare class MediaServicesClient {
|
|
|
96
106
|
* @param ChangeMediaWorkflowConfigurationCompartmentRequest
|
|
97
107
|
* @return ChangeMediaWorkflowConfigurationCompartmentResponse
|
|
98
108
|
* @throws OciError when an error occurs
|
|
99
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
109
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/mediaservices/ChangeMediaWorkflowConfigurationCompartment.ts.html |here} to see how to use ChangeMediaWorkflowConfigurationCompartment API.
|
|
100
110
|
*/
|
|
101
111
|
changeMediaWorkflowConfigurationCompartment(changeMediaWorkflowConfigurationCompartmentRequest: requests.ChangeMediaWorkflowConfigurationCompartmentRequest): Promise<responses.ChangeMediaWorkflowConfigurationCompartmentResponse>;
|
|
102
112
|
/**
|
|
@@ -105,7 +115,7 @@ export declare class MediaServicesClient {
|
|
|
105
115
|
* @param ChangeMediaWorkflowJobCompartmentRequest
|
|
106
116
|
* @return ChangeMediaWorkflowJobCompartmentResponse
|
|
107
117
|
* @throws OciError when an error occurs
|
|
108
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
118
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/mediaservices/ChangeMediaWorkflowJobCompartment.ts.html |here} to see how to use ChangeMediaWorkflowJobCompartment API.
|
|
109
119
|
*/
|
|
110
120
|
changeMediaWorkflowJobCompartment(changeMediaWorkflowJobCompartmentRequest: requests.ChangeMediaWorkflowJobCompartmentRequest): Promise<responses.ChangeMediaWorkflowJobCompartmentResponse>;
|
|
111
121
|
/**
|
|
@@ -114,7 +124,7 @@ export declare class MediaServicesClient {
|
|
|
114
124
|
* @param ChangeStreamDistributionChannelCompartmentRequest
|
|
115
125
|
* @return ChangeStreamDistributionChannelCompartmentResponse
|
|
116
126
|
* @throws OciError when an error occurs
|
|
117
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
127
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/mediaservices/ChangeStreamDistributionChannelCompartment.ts.html |here} to see how to use ChangeStreamDistributionChannelCompartment API.
|
|
118
128
|
*/
|
|
119
129
|
changeStreamDistributionChannelCompartment(changeStreamDistributionChannelCompartmentRequest: requests.ChangeStreamDistributionChannelCompartmentRequest): Promise<responses.ChangeStreamDistributionChannelCompartmentResponse>;
|
|
120
130
|
/**
|
|
@@ -124,7 +134,7 @@ export declare class MediaServicesClient {
|
|
|
124
134
|
* @param CreateMediaAssetRequest
|
|
125
135
|
* @return CreateMediaAssetResponse
|
|
126
136
|
* @throws OciError when an error occurs
|
|
127
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
137
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/mediaservices/CreateMediaAsset.ts.html |here} to see how to use CreateMediaAsset API.
|
|
128
138
|
*/
|
|
129
139
|
createMediaAsset(createMediaAssetRequest: requests.CreateMediaAssetRequest): Promise<responses.CreateMediaAssetResponse>;
|
|
130
140
|
/**
|
|
@@ -134,7 +144,7 @@ export declare class MediaServicesClient {
|
|
|
134
144
|
* @param CreateMediaWorkflowRequest
|
|
135
145
|
* @return CreateMediaWorkflowResponse
|
|
136
146
|
* @throws OciError when an error occurs
|
|
137
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
147
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/mediaservices/CreateMediaWorkflow.ts.html |here} to see how to use CreateMediaWorkflow API.
|
|
138
148
|
*/
|
|
139
149
|
createMediaWorkflow(createMediaWorkflowRequest: requests.CreateMediaWorkflowRequest): Promise<responses.CreateMediaWorkflowResponse>;
|
|
140
150
|
/**
|
|
@@ -144,7 +154,7 @@ export declare class MediaServicesClient {
|
|
|
144
154
|
* @param CreateMediaWorkflowConfigurationRequest
|
|
145
155
|
* @return CreateMediaWorkflowConfigurationResponse
|
|
146
156
|
* @throws OciError when an error occurs
|
|
147
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
157
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/mediaservices/CreateMediaWorkflowConfiguration.ts.html |here} to see how to use CreateMediaWorkflowConfiguration API.
|
|
148
158
|
*/
|
|
149
159
|
createMediaWorkflowConfiguration(createMediaWorkflowConfigurationRequest: requests.CreateMediaWorkflowConfigurationRequest): Promise<responses.CreateMediaWorkflowConfigurationResponse>;
|
|
150
160
|
/**
|
|
@@ -153,7 +163,7 @@ export declare class MediaServicesClient {
|
|
|
153
163
|
* @param CreateMediaWorkflowJobRequest
|
|
154
164
|
* @return CreateMediaWorkflowJobResponse
|
|
155
165
|
* @throws OciError when an error occurs
|
|
156
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
166
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/mediaservices/CreateMediaWorkflowJob.ts.html |here} to see how to use CreateMediaWorkflowJob API.
|
|
157
167
|
*/
|
|
158
168
|
createMediaWorkflowJob(createMediaWorkflowJobRequest: requests.CreateMediaWorkflowJobRequest): Promise<responses.CreateMediaWorkflowJobResponse>;
|
|
159
169
|
/**
|
|
@@ -163,7 +173,7 @@ export declare class MediaServicesClient {
|
|
|
163
173
|
* @param CreateStreamCdnConfigRequest
|
|
164
174
|
* @return CreateStreamCdnConfigResponse
|
|
165
175
|
* @throws OciError when an error occurs
|
|
166
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
176
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/mediaservices/CreateStreamCdnConfig.ts.html |here} to see how to use CreateStreamCdnConfig API.
|
|
167
177
|
*/
|
|
168
178
|
createStreamCdnConfig(createStreamCdnConfigRequest: requests.CreateStreamCdnConfigRequest): Promise<responses.CreateStreamCdnConfigResponse>;
|
|
169
179
|
/**
|
|
@@ -173,7 +183,7 @@ export declare class MediaServicesClient {
|
|
|
173
183
|
* @param CreateStreamDistributionChannelRequest
|
|
174
184
|
* @return CreateStreamDistributionChannelResponse
|
|
175
185
|
* @throws OciError when an error occurs
|
|
176
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
186
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/mediaservices/CreateStreamDistributionChannel.ts.html |here} to see how to use CreateStreamDistributionChannel API.
|
|
177
187
|
*/
|
|
178
188
|
createStreamDistributionChannel(createStreamDistributionChannelRequest: requests.CreateStreamDistributionChannelRequest): Promise<responses.CreateStreamDistributionChannelResponse>;
|
|
179
189
|
/**
|
|
@@ -183,7 +193,7 @@ export declare class MediaServicesClient {
|
|
|
183
193
|
* @param CreateStreamPackagingConfigRequest
|
|
184
194
|
* @return CreateStreamPackagingConfigResponse
|
|
185
195
|
* @throws OciError when an error occurs
|
|
186
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
196
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/mediaservices/CreateStreamPackagingConfig.ts.html |here} to see how to use CreateStreamPackagingConfig API.
|
|
187
197
|
*/
|
|
188
198
|
createStreamPackagingConfig(createStreamPackagingConfigRequest: requests.CreateStreamPackagingConfigRequest): Promise<responses.CreateStreamPackagingConfigResponse>;
|
|
189
199
|
/**
|
|
@@ -192,7 +202,7 @@ export declare class MediaServicesClient {
|
|
|
192
202
|
* @param DeleteMediaAssetRequest
|
|
193
203
|
* @return DeleteMediaAssetResponse
|
|
194
204
|
* @throws OciError when an error occurs
|
|
195
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
205
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/mediaservices/DeleteMediaAsset.ts.html |here} to see how to use DeleteMediaAsset API.
|
|
196
206
|
*/
|
|
197
207
|
deleteMediaAsset(deleteMediaAssetRequest: requests.DeleteMediaAssetRequest): Promise<responses.DeleteMediaAssetResponse>;
|
|
198
208
|
/**
|
|
@@ -201,7 +211,7 @@ export declare class MediaServicesClient {
|
|
|
201
211
|
* @param DeleteMediaAssetDistributionChannelAttachmentRequest
|
|
202
212
|
* @return DeleteMediaAssetDistributionChannelAttachmentResponse
|
|
203
213
|
* @throws OciError when an error occurs
|
|
204
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
214
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/mediaservices/DeleteMediaAssetDistributionChannelAttachment.ts.html |here} to see how to use DeleteMediaAssetDistributionChannelAttachment API.
|
|
205
215
|
*/
|
|
206
216
|
deleteMediaAssetDistributionChannelAttachment(deleteMediaAssetDistributionChannelAttachmentRequest: requests.DeleteMediaAssetDistributionChannelAttachmentRequest): Promise<responses.DeleteMediaAssetDistributionChannelAttachmentResponse>;
|
|
207
217
|
/**
|
|
@@ -210,7 +220,7 @@ export declare class MediaServicesClient {
|
|
|
210
220
|
* @param DeleteMediaWorkflowRequest
|
|
211
221
|
* @return DeleteMediaWorkflowResponse
|
|
212
222
|
* @throws OciError when an error occurs
|
|
213
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
223
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/mediaservices/DeleteMediaWorkflow.ts.html |here} to see how to use DeleteMediaWorkflow API.
|
|
214
224
|
*/
|
|
215
225
|
deleteMediaWorkflow(deleteMediaWorkflowRequest: requests.DeleteMediaWorkflowRequest): Promise<responses.DeleteMediaWorkflowResponse>;
|
|
216
226
|
/**
|
|
@@ -219,7 +229,7 @@ export declare class MediaServicesClient {
|
|
|
219
229
|
* @param DeleteMediaWorkflowConfigurationRequest
|
|
220
230
|
* @return DeleteMediaWorkflowConfigurationResponse
|
|
221
231
|
* @throws OciError when an error occurs
|
|
222
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
232
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/mediaservices/DeleteMediaWorkflowConfiguration.ts.html |here} to see how to use DeleteMediaWorkflowConfiguration API.
|
|
223
233
|
*/
|
|
224
234
|
deleteMediaWorkflowConfiguration(deleteMediaWorkflowConfigurationRequest: requests.DeleteMediaWorkflowConfigurationRequest): Promise<responses.DeleteMediaWorkflowConfigurationResponse>;
|
|
225
235
|
/**
|
|
@@ -228,7 +238,7 @@ export declare class MediaServicesClient {
|
|
|
228
238
|
* @param DeleteMediaWorkflowJobRequest
|
|
229
239
|
* @return DeleteMediaWorkflowJobResponse
|
|
230
240
|
* @throws OciError when an error occurs
|
|
231
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
241
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/mediaservices/DeleteMediaWorkflowJob.ts.html |here} to see how to use DeleteMediaWorkflowJob API.
|
|
232
242
|
*/
|
|
233
243
|
deleteMediaWorkflowJob(deleteMediaWorkflowJobRequest: requests.DeleteMediaWorkflowJobRequest): Promise<responses.DeleteMediaWorkflowJobResponse>;
|
|
234
244
|
/**
|
|
@@ -237,7 +247,7 @@ export declare class MediaServicesClient {
|
|
|
237
247
|
* @param DeleteStreamCdnConfigRequest
|
|
238
248
|
* @return DeleteStreamCdnConfigResponse
|
|
239
249
|
* @throws OciError when an error occurs
|
|
240
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
250
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/mediaservices/DeleteStreamCdnConfig.ts.html |here} to see how to use DeleteStreamCdnConfig API.
|
|
241
251
|
*/
|
|
242
252
|
deleteStreamCdnConfig(deleteStreamCdnConfigRequest: requests.DeleteStreamCdnConfigRequest): Promise<responses.DeleteStreamCdnConfigResponse>;
|
|
243
253
|
/**
|
|
@@ -246,7 +256,7 @@ export declare class MediaServicesClient {
|
|
|
246
256
|
* @param DeleteStreamDistributionChannelRequest
|
|
247
257
|
* @return DeleteStreamDistributionChannelResponse
|
|
248
258
|
* @throws OciError when an error occurs
|
|
249
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
259
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/mediaservices/DeleteStreamDistributionChannel.ts.html |here} to see how to use DeleteStreamDistributionChannel API.
|
|
250
260
|
*/
|
|
251
261
|
deleteStreamDistributionChannel(deleteStreamDistributionChannelRequest: requests.DeleteStreamDistributionChannelRequest): Promise<responses.DeleteStreamDistributionChannelResponse>;
|
|
252
262
|
/**
|
|
@@ -255,7 +265,7 @@ export declare class MediaServicesClient {
|
|
|
255
265
|
* @param DeleteStreamPackagingConfigRequest
|
|
256
266
|
* @return DeleteStreamPackagingConfigResponse
|
|
257
267
|
* @throws OciError when an error occurs
|
|
258
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
268
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/mediaservices/DeleteStreamPackagingConfig.ts.html |here} to see how to use DeleteStreamPackagingConfig API.
|
|
259
269
|
*/
|
|
260
270
|
deleteStreamPackagingConfig(deleteStreamPackagingConfigRequest: requests.DeleteStreamPackagingConfigRequest): Promise<responses.DeleteStreamPackagingConfigResponse>;
|
|
261
271
|
/**
|
|
@@ -264,7 +274,7 @@ export declare class MediaServicesClient {
|
|
|
264
274
|
* @param GetMediaAssetRequest
|
|
265
275
|
* @return GetMediaAssetResponse
|
|
266
276
|
* @throws OciError when an error occurs
|
|
267
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
277
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/mediaservices/GetMediaAsset.ts.html |here} to see how to use GetMediaAsset API.
|
|
268
278
|
*/
|
|
269
279
|
getMediaAsset(getMediaAssetRequest: requests.GetMediaAssetRequest): Promise<responses.GetMediaAssetResponse>;
|
|
270
280
|
/**
|
|
@@ -273,7 +283,7 @@ export declare class MediaServicesClient {
|
|
|
273
283
|
* @param GetMediaAssetDistributionChannelAttachmentRequest
|
|
274
284
|
* @return GetMediaAssetDistributionChannelAttachmentResponse
|
|
275
285
|
* @throws OciError when an error occurs
|
|
276
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
286
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/mediaservices/GetMediaAssetDistributionChannelAttachment.ts.html |here} to see how to use GetMediaAssetDistributionChannelAttachment API.
|
|
277
287
|
*/
|
|
278
288
|
getMediaAssetDistributionChannelAttachment(getMediaAssetDistributionChannelAttachmentRequest: requests.GetMediaAssetDistributionChannelAttachmentRequest): Promise<responses.GetMediaAssetDistributionChannelAttachmentResponse>;
|
|
279
289
|
/**
|
|
@@ -282,7 +292,7 @@ export declare class MediaServicesClient {
|
|
|
282
292
|
* @param GetMediaWorkflowRequest
|
|
283
293
|
* @return GetMediaWorkflowResponse
|
|
284
294
|
* @throws OciError when an error occurs
|
|
285
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
295
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/mediaservices/GetMediaWorkflow.ts.html |here} to see how to use GetMediaWorkflow API.
|
|
286
296
|
*/
|
|
287
297
|
getMediaWorkflow(getMediaWorkflowRequest: requests.GetMediaWorkflowRequest): Promise<responses.GetMediaWorkflowResponse>;
|
|
288
298
|
/**
|
|
@@ -291,7 +301,7 @@ export declare class MediaServicesClient {
|
|
|
291
301
|
* @param GetMediaWorkflowConfigurationRequest
|
|
292
302
|
* @return GetMediaWorkflowConfigurationResponse
|
|
293
303
|
* @throws OciError when an error occurs
|
|
294
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
304
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/mediaservices/GetMediaWorkflowConfiguration.ts.html |here} to see how to use GetMediaWorkflowConfiguration API.
|
|
295
305
|
*/
|
|
296
306
|
getMediaWorkflowConfiguration(getMediaWorkflowConfigurationRequest: requests.GetMediaWorkflowConfigurationRequest): Promise<responses.GetMediaWorkflowConfigurationResponse>;
|
|
297
307
|
/**
|
|
@@ -300,7 +310,7 @@ export declare class MediaServicesClient {
|
|
|
300
310
|
* @param GetMediaWorkflowJobRequest
|
|
301
311
|
* @return GetMediaWorkflowJobResponse
|
|
302
312
|
* @throws OciError when an error occurs
|
|
303
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
313
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/mediaservices/GetMediaWorkflowJob.ts.html |here} to see how to use GetMediaWorkflowJob API.
|
|
304
314
|
*/
|
|
305
315
|
getMediaWorkflowJob(getMediaWorkflowJobRequest: requests.GetMediaWorkflowJobRequest): Promise<responses.GetMediaWorkflowJobResponse>;
|
|
306
316
|
/**
|
|
@@ -309,7 +319,7 @@ export declare class MediaServicesClient {
|
|
|
309
319
|
* @param GetMediaWorkflowJobFactRequest
|
|
310
320
|
* @return GetMediaWorkflowJobFactResponse
|
|
311
321
|
* @throws OciError when an error occurs
|
|
312
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
322
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/mediaservices/GetMediaWorkflowJobFact.ts.html |here} to see how to use GetMediaWorkflowJobFact API.
|
|
313
323
|
*/
|
|
314
324
|
getMediaWorkflowJobFact(getMediaWorkflowJobFactRequest: requests.GetMediaWorkflowJobFactRequest): Promise<responses.GetMediaWorkflowJobFactResponse>;
|
|
315
325
|
/**
|
|
@@ -318,7 +328,7 @@ export declare class MediaServicesClient {
|
|
|
318
328
|
* @param GetStreamCdnConfigRequest
|
|
319
329
|
* @return GetStreamCdnConfigResponse
|
|
320
330
|
* @throws OciError when an error occurs
|
|
321
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
331
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/mediaservices/GetStreamCdnConfig.ts.html |here} to see how to use GetStreamCdnConfig API.
|
|
322
332
|
*/
|
|
323
333
|
getStreamCdnConfig(getStreamCdnConfigRequest: requests.GetStreamCdnConfigRequest): Promise<responses.GetStreamCdnConfigResponse>;
|
|
324
334
|
/**
|
|
@@ -327,7 +337,7 @@ export declare class MediaServicesClient {
|
|
|
327
337
|
* @param GetStreamDistributionChannelRequest
|
|
328
338
|
* @return GetStreamDistributionChannelResponse
|
|
329
339
|
* @throws OciError when an error occurs
|
|
330
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
340
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/mediaservices/GetStreamDistributionChannel.ts.html |here} to see how to use GetStreamDistributionChannel API.
|
|
331
341
|
*/
|
|
332
342
|
getStreamDistributionChannel(getStreamDistributionChannelRequest: requests.GetStreamDistributionChannelRequest): Promise<responses.GetStreamDistributionChannelResponse>;
|
|
333
343
|
/**
|
|
@@ -336,7 +346,7 @@ export declare class MediaServicesClient {
|
|
|
336
346
|
* @param GetStreamPackagingConfigRequest
|
|
337
347
|
* @return GetStreamPackagingConfigResponse
|
|
338
348
|
* @throws OciError when an error occurs
|
|
339
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
349
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/mediaservices/GetStreamPackagingConfig.ts.html |here} to see how to use GetStreamPackagingConfig API.
|
|
340
350
|
*/
|
|
341
351
|
getStreamPackagingConfig(getStreamPackagingConfigRequest: requests.GetStreamPackagingConfigRequest): Promise<responses.GetStreamPackagingConfigResponse>;
|
|
342
352
|
/**
|
|
@@ -345,7 +355,7 @@ export declare class MediaServicesClient {
|
|
|
345
355
|
* @param IngestStreamDistributionChannelRequest
|
|
346
356
|
* @return IngestStreamDistributionChannelResponse
|
|
347
357
|
* @throws OciError when an error occurs
|
|
348
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
358
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/mediaservices/IngestStreamDistributionChannel.ts.html |here} to see how to use IngestStreamDistributionChannel API.
|
|
349
359
|
*/
|
|
350
360
|
ingestStreamDistributionChannel(ingestStreamDistributionChannelRequest: requests.IngestStreamDistributionChannelRequest): Promise<responses.IngestStreamDistributionChannelResponse>;
|
|
351
361
|
/**
|
|
@@ -354,7 +364,7 @@ export declare class MediaServicesClient {
|
|
|
354
364
|
* @param ListMediaAssetDistributionChannelAttachmentsRequest
|
|
355
365
|
* @return ListMediaAssetDistributionChannelAttachmentsResponse
|
|
356
366
|
* @throws OciError when an error occurs
|
|
357
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
367
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/mediaservices/ListMediaAssetDistributionChannelAttachments.ts.html |here} to see how to use ListMediaAssetDistributionChannelAttachments API.
|
|
358
368
|
*/
|
|
359
369
|
listMediaAssetDistributionChannelAttachments(listMediaAssetDistributionChannelAttachmentsRequest: requests.ListMediaAssetDistributionChannelAttachmentsRequest): Promise<responses.ListMediaAssetDistributionChannelAttachmentsResponse>;
|
|
360
370
|
/**
|
|
@@ -364,7 +374,7 @@ export declare class MediaServicesClient {
|
|
|
364
374
|
* @param ListMediaAssetsRequest
|
|
365
375
|
* @return ListMediaAssetsResponse
|
|
366
376
|
* @throws OciError when an error occurs
|
|
367
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
377
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/mediaservices/ListMediaAssets.ts.html |here} to see how to use ListMediaAssets API.
|
|
368
378
|
*/
|
|
369
379
|
listMediaAssets(listMediaAssetsRequest: requests.ListMediaAssetsRequest): Promise<responses.ListMediaAssetsResponse>;
|
|
370
380
|
/**
|
|
@@ -374,7 +384,7 @@ export declare class MediaServicesClient {
|
|
|
374
384
|
* @param ListMediaWorkflowConfigurationsRequest
|
|
375
385
|
* @return ListMediaWorkflowConfigurationsResponse
|
|
376
386
|
* @throws OciError when an error occurs
|
|
377
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
387
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/mediaservices/ListMediaWorkflowConfigurations.ts.html |here} to see how to use ListMediaWorkflowConfigurations API.
|
|
378
388
|
*/
|
|
379
389
|
listMediaWorkflowConfigurations(listMediaWorkflowConfigurationsRequest: requests.ListMediaWorkflowConfigurationsRequest): Promise<responses.ListMediaWorkflowConfigurationsResponse>;
|
|
380
390
|
/**
|
|
@@ -383,7 +393,7 @@ export declare class MediaServicesClient {
|
|
|
383
393
|
* @param ListMediaWorkflowJobFactsRequest
|
|
384
394
|
* @return ListMediaWorkflowJobFactsResponse
|
|
385
395
|
* @throws OciError when an error occurs
|
|
386
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
396
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/mediaservices/ListMediaWorkflowJobFacts.ts.html |here} to see how to use ListMediaWorkflowJobFacts API.
|
|
387
397
|
*/
|
|
388
398
|
listMediaWorkflowJobFacts(listMediaWorkflowJobFactsRequest: requests.ListMediaWorkflowJobFactsRequest): Promise<responses.ListMediaWorkflowJobFactsResponse>;
|
|
389
399
|
/**
|
|
@@ -392,7 +402,7 @@ export declare class MediaServicesClient {
|
|
|
392
402
|
* @param ListMediaWorkflowJobsRequest
|
|
393
403
|
* @return ListMediaWorkflowJobsResponse
|
|
394
404
|
* @throws OciError when an error occurs
|
|
395
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
405
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/mediaservices/ListMediaWorkflowJobs.ts.html |here} to see how to use ListMediaWorkflowJobs API.
|
|
396
406
|
*/
|
|
397
407
|
listMediaWorkflowJobs(listMediaWorkflowJobsRequest: requests.ListMediaWorkflowJobsRequest): Promise<responses.ListMediaWorkflowJobsResponse>;
|
|
398
408
|
/**
|
|
@@ -402,7 +412,7 @@ export declare class MediaServicesClient {
|
|
|
402
412
|
* @param ListMediaWorkflowTaskDeclarationsRequest
|
|
403
413
|
* @return ListMediaWorkflowTaskDeclarationsResponse
|
|
404
414
|
* @throws OciError when an error occurs
|
|
405
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
415
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/mediaservices/ListMediaWorkflowTaskDeclarations.ts.html |here} to see how to use ListMediaWorkflowTaskDeclarations API.
|
|
406
416
|
*/
|
|
407
417
|
listMediaWorkflowTaskDeclarations(listMediaWorkflowTaskDeclarationsRequest: requests.ListMediaWorkflowTaskDeclarationsRequest): Promise<responses.ListMediaWorkflowTaskDeclarationsResponse>;
|
|
408
418
|
/**
|
|
@@ -411,7 +421,7 @@ export declare class MediaServicesClient {
|
|
|
411
421
|
* @param ListMediaWorkflowsRequest
|
|
412
422
|
* @return ListMediaWorkflowsResponse
|
|
413
423
|
* @throws OciError when an error occurs
|
|
414
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
424
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/mediaservices/ListMediaWorkflows.ts.html |here} to see how to use ListMediaWorkflows API.
|
|
415
425
|
*/
|
|
416
426
|
listMediaWorkflows(listMediaWorkflowsRequest: requests.ListMediaWorkflowsRequest): Promise<responses.ListMediaWorkflowsResponse>;
|
|
417
427
|
/**
|
|
@@ -420,7 +430,7 @@ export declare class MediaServicesClient {
|
|
|
420
430
|
* @param ListStreamCdnConfigsRequest
|
|
421
431
|
* @return ListStreamCdnConfigsResponse
|
|
422
432
|
* @throws OciError when an error occurs
|
|
423
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
433
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/mediaservices/ListStreamCdnConfigs.ts.html |here} to see how to use ListStreamCdnConfigs API.
|
|
424
434
|
*/
|
|
425
435
|
listStreamCdnConfigs(listStreamCdnConfigsRequest: requests.ListStreamCdnConfigsRequest): Promise<responses.ListStreamCdnConfigsResponse>;
|
|
426
436
|
/**
|
|
@@ -429,7 +439,7 @@ export declare class MediaServicesClient {
|
|
|
429
439
|
* @param ListStreamDistributionChannelsRequest
|
|
430
440
|
* @return ListStreamDistributionChannelsResponse
|
|
431
441
|
* @throws OciError when an error occurs
|
|
432
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
442
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/mediaservices/ListStreamDistributionChannels.ts.html |here} to see how to use ListStreamDistributionChannels API.
|
|
433
443
|
*/
|
|
434
444
|
listStreamDistributionChannels(listStreamDistributionChannelsRequest: requests.ListStreamDistributionChannelsRequest): Promise<responses.ListStreamDistributionChannelsResponse>;
|
|
435
445
|
/**
|
|
@@ -438,7 +448,7 @@ export declare class MediaServicesClient {
|
|
|
438
448
|
* @param ListStreamPackagingConfigsRequest
|
|
439
449
|
* @return ListStreamPackagingConfigsResponse
|
|
440
450
|
* @throws OciError when an error occurs
|
|
441
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
451
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/mediaservices/ListStreamPackagingConfigs.ts.html |here} to see how to use ListStreamPackagingConfigs API.
|
|
442
452
|
*/
|
|
443
453
|
listStreamPackagingConfigs(listStreamPackagingConfigsRequest: requests.ListStreamPackagingConfigsRequest): Promise<responses.ListStreamPackagingConfigsResponse>;
|
|
444
454
|
/**
|
|
@@ -448,7 +458,7 @@ export declare class MediaServicesClient {
|
|
|
448
458
|
* @param ListSystemMediaWorkflowsRequest
|
|
449
459
|
* @return ListSystemMediaWorkflowsResponse
|
|
450
460
|
* @throws OciError when an error occurs
|
|
451
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
461
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/mediaservices/ListSystemMediaWorkflows.ts.html |here} to see how to use ListSystemMediaWorkflows API.
|
|
452
462
|
*/
|
|
453
463
|
listSystemMediaWorkflows(listSystemMediaWorkflowsRequest: requests.ListSystemMediaWorkflowsRequest): Promise<responses.ListSystemMediaWorkflowsResponse>;
|
|
454
464
|
/**
|
|
@@ -457,7 +467,7 @@ export declare class MediaServicesClient {
|
|
|
457
467
|
* @param UpdateMediaAssetRequest
|
|
458
468
|
* @return UpdateMediaAssetResponse
|
|
459
469
|
* @throws OciError when an error occurs
|
|
460
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
470
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/mediaservices/UpdateMediaAsset.ts.html |here} to see how to use UpdateMediaAsset API.
|
|
461
471
|
*/
|
|
462
472
|
updateMediaAsset(updateMediaAssetRequest: requests.UpdateMediaAssetRequest): Promise<responses.UpdateMediaAssetResponse>;
|
|
463
473
|
/**
|
|
@@ -466,7 +476,7 @@ export declare class MediaServicesClient {
|
|
|
466
476
|
* @param UpdateMediaWorkflowRequest
|
|
467
477
|
* @return UpdateMediaWorkflowResponse
|
|
468
478
|
* @throws OciError when an error occurs
|
|
469
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
479
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/mediaservices/UpdateMediaWorkflow.ts.html |here} to see how to use UpdateMediaWorkflow API.
|
|
470
480
|
*/
|
|
471
481
|
updateMediaWorkflow(updateMediaWorkflowRequest: requests.UpdateMediaWorkflowRequest): Promise<responses.UpdateMediaWorkflowResponse>;
|
|
472
482
|
/**
|
|
@@ -475,7 +485,7 @@ export declare class MediaServicesClient {
|
|
|
475
485
|
* @param UpdateMediaWorkflowConfigurationRequest
|
|
476
486
|
* @return UpdateMediaWorkflowConfigurationResponse
|
|
477
487
|
* @throws OciError when an error occurs
|
|
478
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
488
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/mediaservices/UpdateMediaWorkflowConfiguration.ts.html |here} to see how to use UpdateMediaWorkflowConfiguration API.
|
|
479
489
|
*/
|
|
480
490
|
updateMediaWorkflowConfiguration(updateMediaWorkflowConfigurationRequest: requests.UpdateMediaWorkflowConfigurationRequest): Promise<responses.UpdateMediaWorkflowConfigurationResponse>;
|
|
481
491
|
/**
|
|
@@ -484,7 +494,7 @@ export declare class MediaServicesClient {
|
|
|
484
494
|
* @param UpdateMediaWorkflowJobRequest
|
|
485
495
|
* @return UpdateMediaWorkflowJobResponse
|
|
486
496
|
* @throws OciError when an error occurs
|
|
487
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
497
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/mediaservices/UpdateMediaWorkflowJob.ts.html |here} to see how to use UpdateMediaWorkflowJob API.
|
|
488
498
|
*/
|
|
489
499
|
updateMediaWorkflowJob(updateMediaWorkflowJobRequest: requests.UpdateMediaWorkflowJobRequest): Promise<responses.UpdateMediaWorkflowJobResponse>;
|
|
490
500
|
/**
|
|
@@ -493,7 +503,7 @@ export declare class MediaServicesClient {
|
|
|
493
503
|
* @param UpdateStreamCdnConfigRequest
|
|
494
504
|
* @return UpdateStreamCdnConfigResponse
|
|
495
505
|
* @throws OciError when an error occurs
|
|
496
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
506
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/mediaservices/UpdateStreamCdnConfig.ts.html |here} to see how to use UpdateStreamCdnConfig API.
|
|
497
507
|
*/
|
|
498
508
|
updateStreamCdnConfig(updateStreamCdnConfigRequest: requests.UpdateStreamCdnConfigRequest): Promise<responses.UpdateStreamCdnConfigResponse>;
|
|
499
509
|
/**
|
|
@@ -502,7 +512,7 @@ export declare class MediaServicesClient {
|
|
|
502
512
|
* @param UpdateStreamDistributionChannelRequest
|
|
503
513
|
* @return UpdateStreamDistributionChannelResponse
|
|
504
514
|
* @throws OciError when an error occurs
|
|
505
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
515
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/mediaservices/UpdateStreamDistributionChannel.ts.html |here} to see how to use UpdateStreamDistributionChannel API.
|
|
506
516
|
*/
|
|
507
517
|
updateStreamDistributionChannel(updateStreamDistributionChannelRequest: requests.UpdateStreamDistributionChannelRequest): Promise<responses.UpdateStreamDistributionChannelResponse>;
|
|
508
518
|
/**
|
|
@@ -511,7 +521,7 @@ export declare class MediaServicesClient {
|
|
|
511
521
|
* @param UpdateStreamPackagingConfigRequest
|
|
512
522
|
* @return UpdateStreamPackagingConfigResponse
|
|
513
523
|
* @throws OciError when an error occurs
|
|
514
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
524
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/mediaservices/UpdateStreamPackagingConfig.ts.html |here} to see how to use UpdateStreamPackagingConfig API.
|
|
515
525
|
*/
|
|
516
526
|
updateStreamPackagingConfig(updateStreamPackagingConfigRequest: requests.UpdateStreamPackagingConfigRequest): Promise<responses.UpdateStreamPackagingConfigResponse>;
|
|
517
527
|
}
|
|
@@ -523,12 +533,16 @@ export declare enum MediaStreamApiKeys {
|
|
|
523
533
|
export declare class MediaStreamClient {
|
|
524
534
|
protected static serviceEndpointTemplate: string;
|
|
525
535
|
protected static endpointServiceName: string;
|
|
536
|
+
protected "_realmSpecificEndpointTemplateEnabled": boolean;
|
|
526
537
|
protected "_endpoint": string;
|
|
527
538
|
protected "_defaultHeaders": any;
|
|
528
539
|
protected "_clientConfiguration": common.ClientConfiguration;
|
|
529
540
|
protected _circuitBreaker: null;
|
|
530
541
|
protected _httpOptions: any;
|
|
531
542
|
targetService: string;
|
|
543
|
+
protected _regionId: string;
|
|
544
|
+
protected "_region": common.Region;
|
|
545
|
+
protected _lastSetRegionOrRegionId: string;
|
|
532
546
|
protected _httpClient: common.HttpClient;
|
|
533
547
|
constructor(params: common.AuthParams, clientConfiguration?: common.ClientConfiguration);
|
|
534
548
|
/**
|
|
@@ -541,6 +555,12 @@ export declare class MediaStreamClient {
|
|
|
541
555
|
*/
|
|
542
556
|
set endpoint(endpoint: string);
|
|
543
557
|
get logger(): import("oci-common/lib/log").Logger;
|
|
558
|
+
/**
|
|
559
|
+
* Determines whether realm specific endpoint should be used or not.
|
|
560
|
+
* Set realmSpecificEndpointTemplateEnabled to "true" if the user wants to enable use of realm specific endpoint template, otherwise set it to "false"
|
|
561
|
+
* @param realmSpecificEndpointTemplateEnabled flag to enable the use of realm specific endpoint template
|
|
562
|
+
*/
|
|
563
|
+
set useRealmSpecificEndpointTemplate(realmSpecificEndpointTemplateEnabled: boolean);
|
|
544
564
|
/**
|
|
545
565
|
* Sets the region to call (ex, Region.US_PHOENIX_1).
|
|
546
566
|
* Note, this will call {@link #endpoint(String) endpoint} after resolving the endpoint.
|
|
@@ -562,7 +582,7 @@ export declare class MediaStreamClient {
|
|
|
562
582
|
* @param GeneratePlaylistRequest
|
|
563
583
|
* @return GeneratePlaylistResponse
|
|
564
584
|
* @throws OciError when an error occurs
|
|
565
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
585
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/mediaservices/GeneratePlaylist.ts.html |here} to see how to use GeneratePlaylist API.
|
|
566
586
|
*/
|
|
567
587
|
generatePlaylist(generatePlaylistRequest: requests.GeneratePlaylistRequest): Promise<responses.GeneratePlaylistResponse>;
|
|
568
588
|
/**
|
|
@@ -571,7 +591,7 @@ export declare class MediaStreamClient {
|
|
|
571
591
|
* @param GenerateSessionTokenRequest
|
|
572
592
|
* @return GenerateSessionTokenResponse
|
|
573
593
|
* @throws OciError when an error occurs
|
|
574
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
594
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/mediaservices/GenerateSessionToken.ts.html |here} to see how to use GenerateSessionToken API.
|
|
575
595
|
*/
|
|
576
596
|
generateSessionToken(generateSessionTokenRequest: requests.GenerateSessionTokenRequest): Promise<responses.GenerateSessionTokenResponse>;
|
|
577
597
|
}
|