Skip to content
Closed
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
2 changes: 1 addition & 1 deletion sdk/hdinsight/arm-hdinsight/LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2019 Microsoft
Copyright (c) 2020 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
8 changes: 8 additions & 0 deletions sdk/hdinsight/arm-hdinsight/src/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -449,6 +449,10 @@ export interface ClusterCreateProperties {
* The disk encryption properties.
*/
diskEncryptionProperties?: DiskEncryptionProperties;
/**
* The minimal supported tls version.
*/
minSupportedTlsVersion?: string;
}

/**
Expand Down Expand Up @@ -636,6 +640,10 @@ export interface ClusterGetProperties {
* The disk encryption properties.
*/
diskEncryptionProperties?: DiskEncryptionProperties;
/**
* The minimal supported tls version.
*/
minSupportedTlsVersion?: string;
}

/**
Expand Down
12 changes: 12 additions & 0 deletions sdk/hdinsight/arm-hdinsight/src/models/mappers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -778,6 +778,12 @@ export const ClusterCreateProperties: msRest.CompositeMapper = {
name: "Composite",
className: "DiskEncryptionProperties"
}
},
minSupportedTlsVersion: {
serializedName: "minSupportedTlsVersion",
type: {
name: "String"
}
}
}
}
Expand Down Expand Up @@ -1113,6 +1119,12 @@ export const ClusterGetProperties: msRest.CompositeMapper = {
name: "Composite",
className: "DiskEncryptionProperties"
}
},
minSupportedTlsVersion: {
serializedName: "minSupportedTlsVersion",
type: {
name: "String"
}
}
}
}
Expand Down