op (one: int32, two: int32): void;
Send JSON:
{"one": 12, "two": 47}| class MVADPolling(LongRunningOperation): | |
| """Implements MVAD train polling.""" | |
| def __init__(self): | |
| self._model_id = None | |
| def can_poll(self, pipeline_response: "PipelineResponseType") -> bool: | |
| # This method is used for algorithm chaining, in MVAD we don't need | |
| # it since this is the only one we will register | |
| return True |
| # Just having fun, don't take this to seriously :p | |
| import sys | |
| import importlib | |
| def new_module(mod_name): | |
| spec = importlib.machinery.ModuleSpec(mod_name,None) | |
| return importlib.util.module_from_spec(spec) |
| import sys | |
| from github import Github, GithubException | |
| REPOS = [ | |
| "Azure/azure-sdk-for-python", | |
| "Azure/azure-sdk-for-net", | |
| "Azure/azure-sdk-for-js", | |
| "Azure/azure-sdk-for-java", |
When creating an issue for DPG:
WS: Code GenerationEpic: xxx label to this issue.
See possible labels here: https://github.com/Azure/azure-sdk-for-python/labels?q=epic%3A| enum AppConfigurationEventTypes { | |
| modified; | |
| deleted; | |
| } | |
| model AppConfigurationBase<TResource> { | |
| @doc("The key used to identify the key-value that was {name}.", TResource) | |
| key?: string; | |
| @doc("The label, if any, used to identify the key-value that was {name}.", TResource) | |
| label?: string; |
| { | |
| "swagger": "2.0", | |
| "info": { | |
| "title": "AutoRest Resource Flattening Test Service", | |
| "description": "Resource Flattening for AutoRest", | |
| "version": "1.0.0" | |
| }, | |
| "host": "localhost:3000", | |
| "schemes": ["http"], | |
| "produces": ["application/json"], |
| # -------------------------------------------------------------------------- | |
| # | |
| # Copyright (c) Microsoft Corporation. All rights reserved. | |
| # | |
| # The MIT License (MIT) | |
| # | |
| # Permission is hereby granted, free of charge, to any person obtaining a copy | |
| # of this software and associated documentation files (the ""Software""), to | |
| # deal in the Software without restriction, including without limitation the | |
| # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or |
| Found 398 specs | |
| Names { | |
| isGroupbySite: 2, | |
| nextPartitionKey: 2, | |
| nextRowKey: 2, | |
| query: 37, | |
| errorBucket: 1, | |
| farmerId: 8, | |
| boundaryId: 3, | |
| otherFarmerId: 1, |
| # from m4 | |
| intpu = "code-model-+no-tags.yuaml" | |
| model = yaml.parse(input) | |
| main_view : LLCClientView = process_model(model) | |
| # from Swagger |