Skip to content
This repository has been archived by the owner on May 5, 2023. It is now read-only.

Commit

Permalink
Generated from a9f7483579875e34fc3befc05e02224a3644bd65 (#4573)
Browse files Browse the repository at this point in the history
Adding JSON encoding type to storage endpoint
  • Loading branch information
AutorestCI authored Jan 22, 2019
1 parent 20e1c89 commit 2aeaf40
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lib/services/iothub/LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2018 Microsoft
Copyright (c) 2019 Microsoft

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 2 additions & 2 deletions lib/services/iothub/lib/models/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -347,8 +347,8 @@ export interface RoutingEventHubProperties {
* written to storage. Value should be between 10485760(10MB) and
* 524288000(500MB). Default value is 314572800(300MB).
* @member {string} [encoding] Encoding that is used to serialize messages to
* blobs. Supported values are 'avro' and 'avrodeflate'. Default value is
* 'avro'.
* blobs. Supported values are 'avro', 'avrodeflate', and 'JSON'. Default value
* is 'avro'. Possible values include: 'Avro', 'AvroDeflate', 'JSON'
*/
export interface RoutingStorageContainerProperties {
connectionString: string;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ class RoutingStorageContainerProperties {
* blob written to storage. Value should be between 10485760(10MB) and
* 524288000(500MB). Default value is 314572800(300MB).
* @member {string} [encoding] Encoding that is used to serialize messages to
* blobs. Supported values are 'avro' and 'avrodeflate'. Default value is
* 'avro'.
* blobs. Supported values are 'avro', 'avrodeflate', and 'JSON'. Default
* value is 'avro'. Possible values include: 'Avro', 'AvroDeflate', 'JSON'
*/
constructor() {
}
Expand Down

0 comments on commit 2aeaf40

Please sign in to comment.