Skip to content

Commit cb9c277

Browse files
colawwjSDK Automation
andauthored
Sdk automation/@Azure arm mediaservices (Azure#11821)
Co-authored-by: SDK Automation <sdkautomation@microsoft.com>
1 parent e1fbd0a commit cb9c277

28 files changed

+2538
-592
lines changed

sdk/mediaservices/arm-mediaservices/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@azure/arm-mediaservices",
33
"author": "Microsoft Corporation",
44
"description": "AzureMediaServices Library with typescript type definitions for node.js and browser.",
5-
"version": "7.2.0",
5+
"version": "8.0.0",
66
"dependencies": {
77
"@azure/ms-rest-azure-js": "^2.0.1",
88
"@azure/ms-rest-js": "^2.0.4",

sdk/mediaservices/arm-mediaservices/src/azureMediaServices.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ class AzureMediaServices extends AzureMediaServicesContext {
2020
accountFilters: operations.AccountFilters;
2121
operations: operations.Operations;
2222
mediaservices: operations.Mediaservices;
23+
privateLinkResources: operations.PrivateLinkResources;
24+
privateEndpointConnections: operations.PrivateEndpointConnections;
2325
locations: operations.Locations;
2426
assets: operations.Assets;
2527
assetFilters: operations.AssetFilters;
@@ -43,6 +45,8 @@ class AzureMediaServices extends AzureMediaServicesContext {
4345
this.accountFilters = new operations.AccountFilters(this);
4446
this.operations = new operations.Operations(this);
4547
this.mediaservices = new operations.Mediaservices(this);
48+
this.privateLinkResources = new operations.PrivateLinkResources(this);
49+
this.privateEndpointConnections = new operations.PrivateEndpointConnections(this);
4650
this.locations = new operations.Locations(this);
4751
this.assets = new operations.Assets(this);
4852
this.assetFilters = new operations.AssetFilters(this);

sdk/mediaservices/arm-mediaservices/src/azureMediaServicesContext.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import * as msRest from "@azure/ms-rest-js";
1313
import * as msRestAzure from "@azure/ms-rest-azure-js";
1414

1515
const packageName = "@azure/arm-mediaservices";
16-
const packageVersion = "7.2.0";
16+
const packageVersion = "8.0.0";
1717

1818
export class AzureMediaServicesContext extends msRestAzure.AzureServiceClient {
1919
credentials: msRest.ServiceClientCredentials;
@@ -37,25 +37,25 @@ export class AzureMediaServicesContext extends msRestAzure.AzureServiceClient {
3737
if (!options) {
3838
options = {};
3939
}
40-
if (!options.userAgent) {
40+
if(!options.userAgent) {
4141
const defaultUserAgent = msRestAzure.getDefaultUserAgentValue();
4242
options.userAgent = `${packageName}/${packageVersion} ${defaultUserAgent}`;
4343
}
4444

4545
super(credentials, options);
4646

47-
this.apiVersion = '2018-07-01';
47+
this.apiVersion = '2020-05-01';
4848
this.acceptLanguage = 'en-US';
4949
this.longRunningOperationRetryTimeout = 30;
5050
this.baseUri = options.baseUri || this.baseUri || "https://management.azure.com";
5151
this.requestContentType = "application/json; charset=utf-8";
5252
this.credentials = credentials;
5353
this.subscriptionId = subscriptionId;
5454

55-
if (options.acceptLanguage !== null && options.acceptLanguage !== undefined) {
55+
if(options.acceptLanguage !== null && options.acceptLanguage !== undefined) {
5656
this.acceptLanguage = options.acceptLanguage;
5757
}
58-
if (options.longRunningOperationRetryTimeout !== null && options.longRunningOperationRetryTimeout !== undefined) {
58+
if(options.longRunningOperationRetryTimeout !== null && options.longRunningOperationRetryTimeout !== undefined) {
5959
this.longRunningOperationRetryTimeout = options.longRunningOperationRetryTimeout;
6060
}
6161
}

sdk/mediaservices/arm-mediaservices/src/models/accountFiltersMappers.ts

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ export {
1010
discriminators,
1111
AacAudio,
1212
AbsoluteClipTime,
13+
AccountEncryption,
1314
AccountFilter,
1415
AccountFilterCollection,
1516
AkamaiAccessControl,
@@ -20,6 +21,7 @@ export {
2021
Audio,
2122
AudioAnalyzerPreset,
2223
AudioOverlay,
24+
AzureEntityResource,
2325
BaseResource,
2426
BuiltInStandardEncoderPreset,
2527
CbcsDrmConfiguration,
@@ -85,16 +87,21 @@ export {
8587
JpgFormat,
8688
JpgImage,
8789
JpgLayer,
90+
KeyVaultProperties,
8891
Layer,
8992
LiveEvent,
9093
LiveEventEncoding,
9194
LiveEventEndpoint,
9295
LiveEventInput,
9396
LiveEventInputAccessControl,
97+
LiveEventInputTrackSelection,
98+
LiveEventOutputTranscriptionTrack,
9499
LiveEventPreview,
95100
LiveEventPreviewAccessControl,
101+
LiveEventTranscription,
96102
LiveOutput,
97103
MediaService,
104+
MediaServiceIdentity,
98105
Mp4Format,
99106
MultiBitrateFormat,
100107
NoEncryption,
@@ -106,6 +113,10 @@ export {
106113
PngLayer,
107114
PresentationTimeRange,
108115
Preset,
116+
PrivateEndpoint,
117+
PrivateEndpointConnection,
118+
PrivateLinkResource,
119+
PrivateLinkServiceConnectionState,
109120
ProxyResource,
110121
Rectangle,
111122
Resource,
@@ -121,13 +132,13 @@ export {
121132
StreamingPolicyFairPlayConfiguration,
122133
StreamingPolicyPlayReadyConfiguration,
123134
StreamingPolicyWidevineConfiguration,
124-
SubscriptionMediaService,
125135
TrackedResource,
126136
TrackPropertyCondition,
127137
TrackSelection,
128138
Transform,
129139
TransformOutput,
130140
TransportStreamFormat,
141+
UtcClipTime,
131142
Video,
132143
VideoAnalyzerPreset,
133144
VideoLayer,

sdk/mediaservices/arm-mediaservices/src/models/assetFiltersMappers.ts

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ export {
1010
discriminators,
1111
AacAudio,
1212
AbsoluteClipTime,
13+
AccountEncryption,
1314
AccountFilter,
1415
AkamaiAccessControl,
1516
AkamaiSignatureHeaderAuthenticationKey,
@@ -20,6 +21,7 @@ export {
2021
Audio,
2122
AudioAnalyzerPreset,
2223
AudioOverlay,
24+
AzureEntityResource,
2325
BaseResource,
2426
BuiltInStandardEncoderPreset,
2527
CbcsDrmConfiguration,
@@ -85,16 +87,21 @@ export {
8587
JpgFormat,
8688
JpgImage,
8789
JpgLayer,
90+
KeyVaultProperties,
8891
Layer,
8992
LiveEvent,
9093
LiveEventEncoding,
9194
LiveEventEndpoint,
9295
LiveEventInput,
9396
LiveEventInputAccessControl,
97+
LiveEventInputTrackSelection,
98+
LiveEventOutputTranscriptionTrack,
9499
LiveEventPreview,
95100
LiveEventPreviewAccessControl,
101+
LiveEventTranscription,
96102
LiveOutput,
97103
MediaService,
104+
MediaServiceIdentity,
98105
Mp4Format,
99106
MultiBitrateFormat,
100107
NoEncryption,
@@ -106,6 +113,10 @@ export {
106113
PngLayer,
107114
PresentationTimeRange,
108115
Preset,
116+
PrivateEndpoint,
117+
PrivateEndpointConnection,
118+
PrivateLinkResource,
119+
PrivateLinkServiceConnectionState,
109120
ProxyResource,
110121
Rectangle,
111122
Resource,
@@ -121,13 +132,13 @@ export {
121132
StreamingPolicyFairPlayConfiguration,
122133
StreamingPolicyPlayReadyConfiguration,
123134
StreamingPolicyWidevineConfiguration,
124-
SubscriptionMediaService,
125135
TrackedResource,
126136
TrackPropertyCondition,
127137
TrackSelection,
128138
Transform,
129139
TransformOutput,
130140
TransportStreamFormat,
141+
UtcClipTime,
131142
Video,
132143
VideoAnalyzerPreset,
133144
VideoLayer,

sdk/mediaservices/arm-mediaservices/src/models/assetsMappers.ts

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ export {
1010
discriminators,
1111
AacAudio,
1212
AbsoluteClipTime,
13+
AccountEncryption,
1314
AccountFilter,
1415
AkamaiAccessControl,
1516
AkamaiSignatureHeaderAuthenticationKey,
@@ -23,6 +24,7 @@ export {
2324
Audio,
2425
AudioAnalyzerPreset,
2526
AudioOverlay,
27+
AzureEntityResource,
2628
BaseResource,
2729
BuiltInStandardEncoderPreset,
2830
CbcsDrmConfiguration,
@@ -88,6 +90,7 @@ export {
8890
JpgFormat,
8991
JpgImage,
9092
JpgLayer,
93+
KeyVaultProperties,
9194
Layer,
9295
ListContainerSasInput,
9396
ListStreamingLocatorsResponse,
@@ -96,10 +99,14 @@ export {
9699
LiveEventEndpoint,
97100
LiveEventInput,
98101
LiveEventInputAccessControl,
102+
LiveEventInputTrackSelection,
103+
LiveEventOutputTranscriptionTrack,
99104
LiveEventPreview,
100105
LiveEventPreviewAccessControl,
106+
LiveEventTranscription,
101107
LiveOutput,
102108
MediaService,
109+
MediaServiceIdentity,
103110
Mp4Format,
104111
MultiBitrateFormat,
105112
NoEncryption,
@@ -111,6 +118,10 @@ export {
111118
PngLayer,
112119
PresentationTimeRange,
113120
Preset,
121+
PrivateEndpoint,
122+
PrivateEndpointConnection,
123+
PrivateLinkResource,
124+
PrivateLinkServiceConnectionState,
114125
ProxyResource,
115126
Rectangle,
116127
Resource,
@@ -127,13 +138,13 @@ export {
127138
StreamingPolicyFairPlayConfiguration,
128139
StreamingPolicyPlayReadyConfiguration,
129140
StreamingPolicyWidevineConfiguration,
130-
SubscriptionMediaService,
131141
TrackedResource,
132142
TrackPropertyCondition,
133143
TrackSelection,
134144
Transform,
135145
TransformOutput,
136146
TransportStreamFormat,
147+
UtcClipTime,
137148
Video,
138149
VideoAnalyzerPreset,
139150
VideoLayer,

sdk/mediaservices/arm-mediaservices/src/models/contentKeyPoliciesMappers.ts

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ export {
1010
discriminators,
1111
AacAudio,
1212
AbsoluteClipTime,
13+
AccountEncryption,
1314
AccountFilter,
1415
AkamaiAccessControl,
1516
AkamaiSignatureHeaderAuthenticationKey,
@@ -19,6 +20,7 @@ export {
1920
Audio,
2021
AudioAnalyzerPreset,
2122
AudioOverlay,
23+
AzureEntityResource,
2224
BaseResource,
2325
BuiltInStandardEncoderPreset,
2426
CbcsDrmConfiguration,
@@ -86,16 +88,21 @@ export {
8688
JpgFormat,
8789
JpgImage,
8890
JpgLayer,
91+
KeyVaultProperties,
8992
Layer,
9093
LiveEvent,
9194
LiveEventEncoding,
9295
LiveEventEndpoint,
9396
LiveEventInput,
9497
LiveEventInputAccessControl,
98+
LiveEventInputTrackSelection,
99+
LiveEventOutputTranscriptionTrack,
95100
LiveEventPreview,
96101
LiveEventPreviewAccessControl,
102+
LiveEventTranscription,
97103
LiveOutput,
98104
MediaService,
105+
MediaServiceIdentity,
99106
Mp4Format,
100107
MultiBitrateFormat,
101108
NoEncryption,
@@ -107,6 +114,10 @@ export {
107114
PngLayer,
108115
PresentationTimeRange,
109116
Preset,
117+
PrivateEndpoint,
118+
PrivateEndpointConnection,
119+
PrivateLinkResource,
120+
PrivateLinkServiceConnectionState,
110121
ProxyResource,
111122
Rectangle,
112123
Resource,
@@ -122,13 +133,13 @@ export {
122133
StreamingPolicyFairPlayConfiguration,
123134
StreamingPolicyPlayReadyConfiguration,
124135
StreamingPolicyWidevineConfiguration,
125-
SubscriptionMediaService,
126136
TrackedResource,
127137
TrackPropertyCondition,
128138
TrackSelection,
129139
Transform,
130140
TransformOutput,
131141
TransportStreamFormat,
142+
UtcClipTime,
132143
Video,
133144
VideoAnalyzerPreset,
134145
VideoLayer,

0 commit comments

Comments
 (0)