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
2 changes: 1 addition & 1 deletion packages/@azure/arm-hdinsight/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
11 changes: 11 additions & 0 deletions packages/@azure/arm-hdinsight/lib/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -321,6 +321,17 @@ export interface StorageAccount {
* @member {string} [key] The storage account access key.
*/
key?: string;
/**
* @member {string} [resourceId] The resource ID of storage account, only to
* be specified for Azure Data Lake Storage Gen 2.
*/
resourceId?: string;
/**
* @member {string} [msiResourceId] The managed identity (MSI) that is
* allowed to access the storage account, only to be specified for Azure Data
* Lake Storage Gen 2.
*/
msiResourceId?: string;
}

/**
Expand Down
12 changes: 12 additions & 0 deletions packages/@azure/arm-hdinsight/lib/models/mappers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -443,6 +443,18 @@ export const StorageAccount: msRest.CompositeMapper = {
type: {
name: "String"
}
},
resourceId: {
serializedName: "resourceId",
type: {
name: "String"
}
},
msiResourceId: {
serializedName: "msiResourceId",
type: {
name: "String"
}
}
}
}
Expand Down