diff --git a/services/mediaservices/mgmt/2018-07-01/media/models.go b/services/mediaservices/mgmt/2018-07-01/media/models.go index 2b74db336801..caf5af79298a 100644 --- a/services/mediaservices/mgmt/2018-07-01/media/models.go +++ b/services/mediaservices/mgmt/2018-07-01/media/models.go @@ -225,7 +225,7 @@ const ( // AdaptiveStreaming Produces a set of GOP aligned MP4 files with H.264 video and stereo AAC audio. // Auto-generates a bitrate ladder based on the input resolution and bitrate. The auto-generated preset // will never exceed the input resolution and bitrate. For example, if the input is 720p at 3 Mbps, output - // will remain 720p at best, and will start at rates lower than 3 Mbps. The output will will have video and + // will remain 720p at best, and will start at rates lower than 3 Mbps. The output will have video and // audio in separate MP4 files, which is optimal for adaptive streaming. AdaptiveStreaming EncoderNamedPreset = "AdaptiveStreaming" // H264MultipleBitrate1080p Produces a set of 8 GOP-aligned MP4 files, ranging from 6000 kbps to 400 kbps, @@ -4368,7 +4368,7 @@ type EnvelopeEncryption struct { ClearTracks *[]TrackSelection `json:"clearTracks,omitempty"` // ContentKeys - Representing default content key for each encryption scheme and separate content keys for specific tracks ContentKeys *StreamingPolicyContentKeys `json:"contentKeys,omitempty"` - // CustomKeyAcquisitionURLTemplate - KeyAcquistionUrlTemplate is used to point to user specified service to delivery content keys + // CustomKeyAcquisitionURLTemplate - KeyAcquisitionUrlTemplate is used to point to user specified service to delivery content keys CustomKeyAcquisitionURLTemplate *string `json:"customKeyAcquisitionUrlTemplate,omitempty"` } @@ -5754,7 +5754,7 @@ func (jih JobInputHTTP) AsBasicJobInput() (BasicJobInput, bool) { return &jih, true } -// JobInputs describes a list of of inputs to a Job. +// JobInputs describes a list of inputs to a Job. type JobInputs struct { // Inputs - List of inputs to a Job. Inputs *[]BasicJobInput `json:"inputs,omitempty"` @@ -9422,7 +9422,7 @@ type StreamingLocatorContentKey struct { Type StreamingLocatorContentKeyType `json:"type,omitempty"` // LabelReferenceInStreamingPolicy - Label of Content Key as specified in the Streaming Policy LabelReferenceInStreamingPolicy *string `json:"labelReferenceInStreamingPolicy,omitempty"` - // Value - Value of of Content Key + // Value - Value of Content Key Value *string `json:"value,omitempty"` // PolicyName - ContentKeyPolicy used by Content Key PolicyName *string `json:"policyName,omitempty"` @@ -10593,7 +10593,7 @@ func (vVar Video) AsBasicCodec() (BasicCodec, bool) { // VideoAnalyzerPreset a video analyzer preset that extracts insights (rich metadata) from both audio and // video, and outputs a JSON format file. type VideoAnalyzerPreset struct { - // InsightsToExtract - The type of insights to be extracted. If not set then based on the content the type will selected. If the content is audi only then only audio insights are extraced and if it is video only. Possible values include: 'AudioInsightsOnly', 'VideoInsightsOnly', 'AllInsights' + // InsightsToExtract - The type of insights to be extracted. If not set then based on the content the type will selected. If the content is audio only then only audio insights are extracted and if it is video only. Possible values include: 'AudioInsightsOnly', 'VideoInsightsOnly', 'AllInsights' InsightsToExtract InsightsType `json:"insightsToExtract,omitempty"` // AudioLanguage - The language for the audio payload in the input using the BCP-47 format of 'language tag-region' (e.g: 'en-US'). The list of supported languages are, 'en-US', 'en-GB', 'es-ES', 'es-MX', 'fr-FR', 'it-IT', 'ja-JP', 'pt-BR', 'zh-CN', 'de-DE', 'ar-EG', 'ru-RU', 'hi-IN'. If not specified, automatic language detection would be employed. This feature currently supports English, Chinese, French, German, Italian, Japanese, Spanish, Russian, and Portuguese. The automatic detection works best with audio recordings with clearly discernable speech. If automatic detection fails to find the language, transcription would fallback to English. AudioLanguage *string `json:"audioLanguage,omitempty"` diff --git a/services/mediaservices/mgmt/2018-07-01/media/streaminglocators.go b/services/mediaservices/mgmt/2018-07-01/media/streaminglocators.go index 2fcaf195ce31..6c6496b57e4a 100644 --- a/services/mediaservices/mgmt/2018-07-01/media/streaminglocators.go +++ b/services/mediaservices/mgmt/2018-07-01/media/streaminglocators.go @@ -296,7 +296,7 @@ func (client StreamingLocatorsClient) GetResponder(resp *http.Response) (result // filter - restricts the set of items returned. // top - specifies a non-negative integer n that limits the number of items returned from a collection. The // service returns the number of available items up to but not greater than the specified value n. -// orderby - specifies the the key by which the result collection should be ordered. +// orderby - specifies the key by which the result collection should be ordered. func (client StreamingLocatorsClient) List(ctx context.Context, resourceGroupName string, accountName string, filter string, top *int32, orderby string) (result StreamingLocatorCollectionPage, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/StreamingLocatorsClient.List") diff --git a/services/mediaservices/mgmt/2018-07-01/media/streamingpolicies.go b/services/mediaservices/mgmt/2018-07-01/media/streamingpolicies.go index 55b0087b914d..649baab1ab24 100644 --- a/services/mediaservices/mgmt/2018-07-01/media/streamingpolicies.go +++ b/services/mediaservices/mgmt/2018-07-01/media/streamingpolicies.go @@ -330,7 +330,7 @@ func (client StreamingPoliciesClient) GetResponder(resp *http.Response) (result // filter - restricts the set of items returned. // top - specifies a non-negative integer n that limits the number of items returned from a collection. The // service returns the number of available items up to but not greater than the specified value n. -// orderby - specifies the the key by which the result collection should be ordered. +// orderby - specifies the key by which the result collection should be ordered. func (client StreamingPoliciesClient) List(ctx context.Context, resourceGroupName string, accountName string, filter string, top *int32, orderby string) (result StreamingPolicyCollectionPage, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/StreamingPoliciesClient.List") diff --git a/services/preview/mediaservices/mgmt/2018-03-30-preview/media/models.go b/services/preview/mediaservices/mgmt/2018-03-30-preview/media/models.go index 901fb5547d55..302b611b3f99 100644 --- a/services/preview/mediaservices/mgmt/2018-03-30-preview/media/models.go +++ b/services/preview/mediaservices/mgmt/2018-03-30-preview/media/models.go @@ -225,7 +225,7 @@ const ( // AdaptiveStreaming Produces a set of GOP aligned MP4 files with H.264 video and stereo AAC audio. // Auto-generates a bitrate ladder based on the input resolution and bitrate. The auto-generated preset // will never exceed the input resolution and bitrate. For example, if the input is 720p at 3 Mbps, output - // will remain 720p at best, and will start at rates lower than 3 Mbps. The output will will have video and + // will remain 720p at best, and will start at rates lower than 3 Mbps. The output will have video and // audio in separate MP4 files, which is optimal for adaptive streaming. AdaptiveStreaming EncoderNamedPreset = "AdaptiveStreaming" // H264MultipleBitrate1080p Produces a set of 8 GOP-aligned MP4 files, ranging from 6000 kbps to 400 kbps, @@ -3747,7 +3747,7 @@ type CrossSiteAccessPolicies struct { // DefaultKey class to specify properties of default content key for each encryption scheme type DefaultKey struct { - // Label - Label can be used to specify Content Key when creating Stremaing Locator + // Label - Label can be used to specify Content Key when creating Streaming Locator Label *string `json:"label,omitempty"` // PolicyName - Policy used by Default Key PolicyName *string `json:"policyName,omitempty"` @@ -3792,7 +3792,7 @@ type EnvelopeEncryption struct { ClearTracks *[]TrackSelection `json:"clearTracks,omitempty"` // ContentKeys - Representing default content key for each encryption scheme and separate content keys for specific tracks ContentKeys *StreamingPolicyContentKeys `json:"contentKeys,omitempty"` - // CustomLicenseAcquisitionURLTemplate - LicenseAcquistionUrlTemplate is used to point to user speicified service to delivery content keys + // CustomLicenseAcquisitionURLTemplate - LicenseAcquisitionUrlTemplate is used to point to user specified service to delivery content keys CustomLicenseAcquisitionURLTemplate *string `json:"customLicenseAcquisitionUrlTemplate,omitempty"` } @@ -5150,7 +5150,7 @@ func (jih JobInputHTTP) AsBasicJobInput() (BasicJobInput, bool) { return &jih, true } -// JobInputs describes a list of of inputs to a Job. +// JobInputs describes a list of inputs to a Job. type JobInputs struct { // Inputs - List of inputs to a Job. Inputs *[]BasicJobInput `json:"inputs,omitempty"` @@ -8697,7 +8697,7 @@ type StreamingLocatorContentKey struct { Type StreamingLocatorContentKeyType `json:"type,omitempty"` // ID - ID of Content Key ID *uuid.UUID `json:"id,omitempty"` - // Value - Value of of Content Key + // Value - Value of Content Key Value *string `json:"value,omitempty"` // PolicyName - ContentKeyPolicy used by Content Key PolicyName *string `json:"policyName,omitempty"` @@ -8975,7 +8975,7 @@ func NewStreamingPolicyCollectionPage(getNextPage func(context.Context, Streamin // StreamingPolicyContentKey class to specify properties of content key type StreamingPolicyContentKey struct { - // Label - Label can be used to specify Content Key when creating Stremaing Locator + // Label - Label can be used to specify Content Key when creating Streaming Locator Label *string `json:"label,omitempty"` // PolicyName - Policy used by Content Key PolicyName *string `json:"policyName,omitempty"` @@ -8987,7 +8987,7 @@ type StreamingPolicyContentKey struct { type StreamingPolicyContentKeys struct { // DefaultKey - Default content key for an encryption scheme DefaultKey *DefaultKey `json:"defaultKey,omitempty"` - // KeyToTrackMappings - Representing tracks needs sepearete content key + // KeyToTrackMappings - Representing tracks needs separate content key KeyToTrackMappings *[]StreamingPolicyContentKey `json:"keyToTrackMappings,omitempty"` } @@ -9019,7 +9019,7 @@ type StreamingPolicyProperties struct { CommonEncryptionCenc *CommonEncryptionCenc `json:"commonEncryptionCenc,omitempty"` // CommonEncryptionCbcs - Configuration of CommonEncryptionCbcs CommonEncryptionCbcs *CommonEncryptionCbcs `json:"commonEncryptionCbcs,omitempty"` - // NoEncryption - Configuations of NoEncryption + // NoEncryption - Configuration of NoEncryption NoEncryption *NoEncryption `json:"noEncryption,omitempty"` } @@ -9333,7 +9333,7 @@ type TrackPropertyCondition struct { Property TrackPropertyType `json:"property,omitempty"` // Operation - Track property condition operation. Possible values include: 'TrackPropertyCompareOperationUnknown', 'TrackPropertyCompareOperationEqual' Operation TrackPropertyCompareOperation `json:"operation,omitempty"` - // Value - Track proprty value + // Value - Track property value Value *string `json:"value,omitempty"` } diff --git a/services/preview/mediaservices/mgmt/2018-03-30-preview/media/streaminglocators.go b/services/preview/mediaservices/mgmt/2018-03-30-preview/media/streaminglocators.go index c4b2e1b1fcb1..540292ba3911 100644 --- a/services/preview/mediaservices/mgmt/2018-03-30-preview/media/streaminglocators.go +++ b/services/preview/mediaservices/mgmt/2018-03-30-preview/media/streaminglocators.go @@ -296,7 +296,7 @@ func (client StreamingLocatorsClient) GetResponder(resp *http.Response) (result // filter - restricts the set of items returned. // top - specifies a non-negative integer n that limits the number of items returned from a collection. The // service returns the number of available items up to but not greater than the specified value n. -// orderby - specifies the the key by which the result collection should be ordered. +// orderby - specifies the key by which the result collection should be ordered. func (client StreamingLocatorsClient) List(ctx context.Context, resourceGroupName string, accountName string, filter string, top *int32, orderby string) (result StreamingLocatorCollectionPage, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/StreamingLocatorsClient.List") diff --git a/services/preview/mediaservices/mgmt/2018-03-30-preview/media/streamingpolicies.go b/services/preview/mediaservices/mgmt/2018-03-30-preview/media/streamingpolicies.go index 9acdf3cec984..0dea88998087 100644 --- a/services/preview/mediaservices/mgmt/2018-03-30-preview/media/streamingpolicies.go +++ b/services/preview/mediaservices/mgmt/2018-03-30-preview/media/streamingpolicies.go @@ -330,7 +330,7 @@ func (client StreamingPoliciesClient) GetResponder(resp *http.Response) (result // filter - restricts the set of items returned. // top - specifies a non-negative integer n that limits the number of items returned from a collection. The // service returns the number of available items up to but not greater than the specified value n. -// orderby - specifies the the key by which the result collection should be ordered. +// orderby - specifies the key by which the result collection should be ordered. func (client StreamingPoliciesClient) List(ctx context.Context, resourceGroupName string, accountName string, filter string, top *int32, orderby string) (result StreamingPolicyCollectionPage, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/StreamingPoliciesClient.List") diff --git a/services/preview/mediaservices/mgmt/2018-06-01-preview/media/models.go b/services/preview/mediaservices/mgmt/2018-06-01-preview/media/models.go index 2f281b380f06..dcda2078e228 100644 --- a/services/preview/mediaservices/mgmt/2018-06-01-preview/media/models.go +++ b/services/preview/mediaservices/mgmt/2018-06-01-preview/media/models.go @@ -225,7 +225,7 @@ const ( // AdaptiveStreaming Produces a set of GOP aligned MP4 files with H.264 video and stereo AAC audio. // Auto-generates a bitrate ladder based on the input resolution and bitrate. The auto-generated preset // will never exceed the input resolution and bitrate. For example, if the input is 720p at 3 Mbps, output - // will remain 720p at best, and will start at rates lower than 3 Mbps. The output will will have video and + // will remain 720p at best, and will start at rates lower than 3 Mbps. The output will have video and // audio in separate MP4 files, which is optimal for adaptive streaming. AdaptiveStreaming EncoderNamedPreset = "AdaptiveStreaming" // H264MultipleBitrate1080p Produces a set of 8 GOP-aligned MP4 files, ranging from 6000 kbps to 400 kbps, @@ -3792,7 +3792,7 @@ type EnvelopeEncryption struct { ClearTracks *[]TrackSelection `json:"clearTracks,omitempty"` // ContentKeys - Representing default content key for each encryption scheme and separate content keys for specific tracks ContentKeys *StreamingPolicyContentKeys `json:"contentKeys,omitempty"` - // CustomKeyAcquisitionURLTemplate - KeyAcquistionUrlTemplate is used to point to user specified service to delivery content keys + // CustomKeyAcquisitionURLTemplate - KeyAcquisitionUrlTemplate is used to point to user specified service to delivery content keys CustomKeyAcquisitionURLTemplate *string `json:"customKeyAcquisitionUrlTemplate,omitempty"` } @@ -5150,7 +5150,7 @@ func (jih JobInputHTTP) AsBasicJobInput() (BasicJobInput, bool) { return &jih, true } -// JobInputs describes a list of of inputs to a Job. +// JobInputs describes a list of inputs to a Job. type JobInputs struct { // Inputs - List of inputs to a Job. Inputs *[]BasicJobInput `json:"inputs,omitempty"` @@ -8738,7 +8738,7 @@ type StreamingLocatorContentKey struct { Type StreamingLocatorContentKeyType `json:"type,omitempty"` // Label - Label of Content Key Label *string `json:"label,omitempty"` - // Value - Value of of Content Key + // Value - Value of Content Key Value *string `json:"value,omitempty"` // PolicyName - ContentKeyPolicy used by Content Key PolicyName *string `json:"policyName,omitempty"` diff --git a/services/preview/mediaservices/mgmt/2018-06-01-preview/media/streaminglocators.go b/services/preview/mediaservices/mgmt/2018-06-01-preview/media/streaminglocators.go index 09a760dab30d..2e3317395442 100644 --- a/services/preview/mediaservices/mgmt/2018-06-01-preview/media/streaminglocators.go +++ b/services/preview/mediaservices/mgmt/2018-06-01-preview/media/streaminglocators.go @@ -296,7 +296,7 @@ func (client StreamingLocatorsClient) GetResponder(resp *http.Response) (result // filter - restricts the set of items returned. // top - specifies a non-negative integer n that limits the number of items returned from a collection. The // service returns the number of available items up to but not greater than the specified value n. -// orderby - specifies the the key by which the result collection should be ordered. +// orderby - specifies the key by which the result collection should be ordered. func (client StreamingLocatorsClient) List(ctx context.Context, resourceGroupName string, accountName string, filter string, top *int32, orderby string) (result StreamingLocatorCollectionPage, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/StreamingLocatorsClient.List") diff --git a/services/preview/mediaservices/mgmt/2018-06-01-preview/media/streamingpolicies.go b/services/preview/mediaservices/mgmt/2018-06-01-preview/media/streamingpolicies.go index 78fc5ddd3e06..63201d2ab7c5 100644 --- a/services/preview/mediaservices/mgmt/2018-06-01-preview/media/streamingpolicies.go +++ b/services/preview/mediaservices/mgmt/2018-06-01-preview/media/streamingpolicies.go @@ -330,7 +330,7 @@ func (client StreamingPoliciesClient) GetResponder(resp *http.Response) (result // filter - restricts the set of items returned. // top - specifies a non-negative integer n that limits the number of items returned from a collection. The // service returns the number of available items up to but not greater than the specified value n. -// orderby - specifies the the key by which the result collection should be ordered. +// orderby - specifies the key by which the result collection should be ordered. func (client StreamingPoliciesClient) List(ctx context.Context, resourceGroupName string, accountName string, filter string, top *int32, orderby string) (result StreamingPolicyCollectionPage, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/StreamingPoliciesClient.List")