Skip to content
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

Nfsaas 2102 update to r3 5 #35

Merged
merged 8 commits into from
Apr 9, 2019
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 .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -66,4 +66,4 @@

/src/sqlvm-preview/ @yareyes

/src/anf-preview/ @b-lefr
/src/netappfiles-preview/ @b-lefr
2 changes: 1 addition & 1 deletion src/index.json
Original file line number Diff line number Diff line change
Expand Up @@ -1431,7 +1431,7 @@
"summary": "Provides a preview for upcoming Azure NetApp Files (ANF) features.",
"version": "0.2.0"
},
"sha256Digest": "f0078a9f03416066abc21d6103bb9ddb9cbfb5a994054e1b2280ab89a61116a0"
"sha256Digest": "48d50ebd51fe831b9e236a7f282d93f16a0235238ce2dccf30e838df0fbc365b"
}
],
"privatedns": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ def test_ext_create_delete_account(self):

# create and check
# account = self.cmd("az netappfiles account create --resource-group {rg} --account-name '%s' -l 'westus2' --tags '%s' --active-directories %s" % (account_name, tags, active_directories)).get_output_in_json()

account = self.cmd("az netappfiles account create --resource-group {rg} --account-name '%s' -l 'westus2' --tags '%s'" % (account_name, tags)).get_output_in_json()
assert account['name'] == account_name
assert account['tags']['Tag1'] == 'Value1'
Expand All @@ -39,7 +38,6 @@ def test_ext_create_delete_account(self):
assert account['name'] == account_name
# note: key case must match
assert account['activeDirectories'] is None

account_list = self.cmd("netappfiles account list --resource-group {rg}").get_output_in_json()
assert len(account_list) > 0

Expand Down