Skip to content

PowerShell Module for Azure Stream Analytics Service #32

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 38 commits into from
Dec 5, 2014
Merged
Changes from 1 commit
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
26cdd5b
Add powershell commands for the Azure stream analytics service
qunshuzhang Nov 20, 2014
cb88f42
Fixes and improvements
qunshuzhang Nov 20, 2014
642670e
Fix ResourceGroupName
qunshuzhang Nov 20, 2014
7b00552
Fix the parameter set
qunshuzhang Nov 20, 2014
437bd1a
Fix all the confirmation behavior
qunshuzhang Nov 20, 2014
64df8e1
Add Test-AzureStreamAnalyticsInput and Test-AzureStreamAnalyticsOutput
qunshuzhang Nov 20, 2014
f29b4e0
Improve all the response content
qunshuzhang Nov 20, 2014
f5f80a5
Remove static check about the regions
qunshuzhang Nov 20, 2014
6d1fe65
Add setup and fix the job name
qunshuzhang Nov 21, 2014
12d4b4f
Fix the missing name in json file scenario
qunshuzhang Nov 21, 2014
5547a9f
Change set to internal
qunshuzhang Nov 21, 2014
cbf1d03
Bug Fixes
qunshuzhang Nov 25, 2014
21cec05
Bug fixes
qunshuzhang Nov 25, 2014
0fb5c23
Adding E2E Scenario
arturocantu Nov 27, 2014
bc3c90f
Merge remote-tracking branch 'upstream/master'
qunshuzhang Dec 1, 2014
9fe8d43
Improve the message texts
qunshuzhang Dec 2, 2014
e972bc5
Merge branch 'master' of https://github.com/qunshuzhang/azure-powershell
qunshuzhang Dec 2, 2014
40b1b2e
Improve the error message
qunshuzhang Dec 2, 2014
69f478c
Fix the bug for the TestConnection
qunshuzhang Dec 3, 2014
52c258b
Fix Parameter set bug
qunshuzhang Dec 3, 2014
9cdf7ae
some code cleanup
qunshuzhang Dec 3, 2014
775c507
Improve the long running operation
qunshuzhang Dec 3, 2014
9fb259f
Adding missing json files
arturocantu Dec 3, 2014
354d819
Merge branch 'master' of https://github.com/qunshuzhang/azure-powersh…
arturocantu Dec 3, 2014
643dc67
Checkin Helper Content
qunshuzhang Dec 4, 2014
57b6e79
Merge branch 'master' of https://github.com/qunshuzhang/azure-powershell
qunshuzhang Dec 4, 2014
887bf76
Test code clean up
arturocantu Dec 4, 2014
925381d
Add helper content for PowerShell
qunshuzhang Dec 4, 2014
4f10682
Merge branch 'master' of https://github.com/qunshuzhang/azure-powershell
qunshuzhang Dec 4, 2014
f8e6cc4
Fix helper content
qunshuzhang Dec 5, 2014
94fe45d
Try to fix the bug
qunshuzhang Dec 5, 2014
7e13a84
Fix comments
qunshuzhang Dec 5, 2014
b6bdc0d
Fix comments
qunshuzhang Dec 5, 2014
eb12baf
Test fixes
arturocantu Dec 5, 2014
5fbdc0f
try to fix the issue
qunshuzhang Dec 5, 2014
bbc8f3e
Merge branch 'master' of https://github.com/qunshuzhang/azure-powershell
qunshuzhang Dec 5, 2014
d0dd0d9
revert
qunshuzhang Dec 5, 2014
8135315
Try to fix the build issue
qunshuzhang Dec 5, 2014
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
Prev Previous commit
Next Next commit
Bug fixes
  • Loading branch information
qunshuzhang committed Nov 25, 2014
commit 21cec05144fac65a521c0dc64c3b4799d2d2e18e
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ protected string ResolveResourceName(string rawJsonContent, string nameFromCmdle
? nameExtractedFromJson
: nameFromCmdletContext;

// Show a message that if names do not match, name specified with -Name parameter will be used.
if (string.Compare(resolvedResourceName, nameExtractedFromJson, StringComparison.OrdinalIgnoreCase) != 0)
// Show a message that if name from json is not null or empty and names do not match, name specified with -Name parameter will be used.
if (!string.IsNullOrEmpty(nameExtractedFromJson) && string.Compare(resolvedResourceName, nameExtractedFromJson, StringComparison.OrdinalIgnoreCase) != 0)
{
WriteVerbose(string.Format(
CultureInfo.InvariantCulture,
Expand Down