-
Notifications
You must be signed in to change notification settings - Fork 1.5k
[Workload-Orchestration] Added Context-ID in Target Update #8977
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
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
af6db73
Added Changes
650f5b1
Added change
252bd77
Added Changes
e01c913
Added
4d9d405
Added
6c7a1e8
Added CM
0ae8825
Added Change
49cd6bd
Made changes
b4ecde9
Made changes
ba6b8e1
Added changes
96977da
Changes to accomodate fix
1df81b6
Made changes in history
13b5062
Made changes
c32af97
Added
1f4ebae
increase version
7e0be5e
changes
26a48a1
fixed endp
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
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 |
|---|---|---|
|
|
@@ -71,12 +71,12 @@ def _build_arguments_schema(cls, *args, **kwargs): | |
| options=["--context-id"], | ||
| arg_group="Properties", | ||
| help="ArmId of Context", | ||
| required=True, | ||
| ) | ||
| _args_schema.description = AAZStrArg( | ||
| options=["--description"], | ||
| arg_group="Properties", | ||
| help="Description of target", | ||
| required=True, | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. revert? |
||
| ) | ||
| _args_schema.display_name = AAZStrArg( | ||
| options=["--display-name"], | ||
|
|
@@ -95,6 +95,7 @@ def _build_arguments_schema(cls, *args, **kwargs): | |
| fmt=AAZStrArgFormat( | ||
| pattern="^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", | ||
| ), | ||
|
|
||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nit: extra line |
||
| ) | ||
| _args_schema.state = AAZStrArg( | ||
| options=["--state"], | ||
|
|
||
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 |
|---|---|---|
|
|
@@ -10,12 +10,12 @@ | |
|
|
||
|
|
||
| # HISTORY.rst entry. | ||
| VERSION = '1.0.0' | ||
| VERSION = '2.0.0' | ||
|
|
||
| # The full list of classifiers is available at | ||
| # https://pypi.python.org/pypi?%3Aaction=list_classifiers | ||
| CLASSIFIERS = [ | ||
| 'Development Status :: 4 - Beta', | ||
| 'Development Status :: 5 - Production/Stable', | ||
| 'Intended Audience :: Developers', | ||
| 'Intended Audience :: System Administrators', | ||
| 'Programming Language :: Python', | ||
|
|
@@ -33,11 +33,16 @@ | |
| with open('HISTORY.rst', 'r', encoding='utf-8') as f: | ||
| HISTORY = f.read() | ||
|
|
||
| SUMMARY = """ | ||
| Workload orchestration for Azure Arc is a comprehensive, cloud-native, cross-platform service engine that simplifies the deployment, management, and update of application workloads across edge environments. Workload orchestration addresses typical application lifecycle management problems for customers who need to have application deployments across multiple fleets with site-specific configurations. It natively supports kubernetes workloads. | ||
|
|
||
| """ | ||
|
|
||
| setup( | ||
| name='workload-orchestration', | ||
| version=VERSION, | ||
| description='Microsoft Azure Command-Line Tools WorkloadOperations Extension.', | ||
| long_description=README + '\n\n' + HISTORY, | ||
| long_description=SUMMARY, | ||
| license='MIT', | ||
| author='Microsoft Corporation', | ||
| author_email='[email protected]', | ||
|
|
||
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.