Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public class IotHubProperties {
private String provisioningState;

/**
* Thehub state state.
* The hub state.
*/
@JsonProperty(value = "state", access = JsonProperty.Access.WRITE_ONLY)
private String state;
Expand Down Expand Up @@ -162,7 +162,7 @@ public String provisioningState() {
}

/**
* Get thehub state state.
* Get the hub state.
*
* @return the state value
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public class RoutingStorageContainerProperties {

/**
* Encoding that is used to serialize messages to blobs. Supported values
* are 'avro' and 'avrodeflate'. Default value is 'avro'.
* are 'avro' and 'avroDeflate'. Default value is 'avro'.
*/
@JsonProperty(value = "encoding")
private String encoding;
Expand Down Expand Up @@ -239,7 +239,7 @@ public RoutingStorageContainerProperties withMaxChunkSizeInBytes(Integer maxChun
}

/**
* Get encoding that is used to serialize messages to blobs. Supported values are 'avro' and 'avrodeflate'. Default value is 'avro'.
* Get encoding that is used to serialize messages to blobs. Supported values are 'avro' and 'avroDeflate'. Default value is 'avro'.
*
* @return the encoding value
*/
Expand All @@ -248,7 +248,7 @@ public String encoding() {
}

/**
* Set encoding that is used to serialize messages to blobs. Supported values are 'avro' and 'avrodeflate'. Default value is 'avro'.
* Set encoding that is used to serialize messages to blobs. Supported values are 'avro' and 'avroDeflate'. Default value is 'avro'.
*
* @param encoding the encoding value to set
* @return the RoutingStorageContainerProperties object itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
*/
public class StorageEndpointProperties {
/**
* The period of time for which the the SAS URI generated by IoT Hub for
* file upload is valid. See:
* The period of time for which the SAS URI generated by IoT Hub for file
* upload is valid. See:
* https://docs.microsoft.com/azure/iot-hub/iot-hub-devguide-file-upload#file-upload-notification-configuration-options.
*/
@JsonProperty(value = "sasTtlAsIso8601")
Expand All @@ -39,7 +39,7 @@ public class StorageEndpointProperties {
private String containerName;

/**
* Get the period of time for which the the SAS URI generated by IoT Hub for file upload is valid. See: https://docs.microsoft.com/azure/iot-hub/iot-hub-devguide-file-upload#file-upload-notification-configuration-options.
* Get the period of time for which the SAS URI generated by IoT Hub for file upload is valid. See: https://docs.microsoft.com/azure/iot-hub/iot-hub-devguide-file-upload#file-upload-notification-configuration-options.
*
* @return the sasTtlAsIso8601 value
*/
Expand All @@ -48,7 +48,7 @@ public Period sasTtlAsIso8601() {
}

/**
* Set the period of time for which the the SAS URI generated by IoT Hub for file upload is valid. See: https://docs.microsoft.com/azure/iot-hub/iot-hub-devguide-file-upload#file-upload-notification-configuration-options.
* Set the period of time for which the SAS URI generated by IoT Hub for file upload is valid. See: https://docs.microsoft.com/azure/iot-hub/iot-hub-devguide-file-upload#file-upload-notification-configuration-options.
*
* @param sasTtlAsIso8601 the sasTtlAsIso8601 value to set
* @return the StorageEndpointProperties object itself.
Expand Down