-
Notifications
You must be signed in to change notification settings - Fork 128
feat: app list options and fixes to app and schema commands #101
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
bflorian
merged 1 commit into
SmartThingsCommunity:master
from
bflorian:app-list-options
Sep 3, 2020
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,44 @@ | ||
| import { flags } from '@oclif/command' | ||
| import { APICommand } from '@smartthings/cli-lib' | ||
| import { addPermission } from '../../lib/aws-utils' | ||
| import { lambdaAuthFlags } from '../../lib/common-flags' | ||
|
|
||
|
|
||
| export default class SchemaAppAuthorize extends APICommand { | ||
| static description = 'authorize calls to your ST Schema Lambda function from SmartThings' | ||
|
|
||
| static flags = { | ||
| ...APICommand.flags, | ||
| ...lambdaAuthFlags, | ||
| } | ||
| static args = [ | ||
| { | ||
| name: 'arn', | ||
| description: 'the ARN of the AWS Lambda function', | ||
| required: true, | ||
| }, | ||
| ] | ||
|
|
||
| static examples = [ | ||
| '$ smartthings apps:authorize arn:aws:lambda:us-east-1:1234567890:function:your-test-app', | ||
| '', | ||
| 'Note that this command is the same as running the following with the AWS CLI:', | ||
| '', | ||
| '$ aws lambda add-permission --region us-east-1 \\', | ||
| ' --function-name arn:aws:lambda:us-east-1:1234567890:function:your-test-app \\', | ||
| ' --statement-id smartthings --principal 148790070172 --action lambda:InvokeFunction', | ||
| '', | ||
| 'It requires your machine to be configured to run the AWS CLI', | ||
| ] | ||
|
|
||
| async run(): Promise<void> { | ||
| const { args, argv, flags } = this.parse(SchemaAppAuthorize) | ||
| await super.setup(args, argv, flags) | ||
|
|
||
| addPermission(args.arn, flags.principal, flags['statement-id']).then(async (message) => { | ||
| this.log(message) | ||
| }).catch(err => { | ||
| this.log(`caught error ${err}`) | ||
| }) | ||
| } | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| import { flags } from '@oclif/command' | ||
|
|
||
|
|
||
| export const lambdaAuthFlags = { | ||
| principal: flags.string({ | ||
| description: 'use this principal instead of the default when authorizing lambda functions', | ||
| }), | ||
| 'statement-id': flags.string({ | ||
| description: 'use this statement id instead of the default when authorizing lambda functions', | ||
| }), | ||
| } |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I love that you're including these examples. I need to do that more often.