op (one: int32, two: int32): void;
Send JSON:
{"one": 12, "two": 47}
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 Generation
Epic: xxx
label to this issue.
See possible labels here: https://github.com/Azure/azure-sdk-for-python/labels?q=epic%3Aenum 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 |
import os | |
import json | |
# | |
# Low-level client: lowest possible call | |
# | |
from azure.core.pipeline.transport import HttpRequest, HttpResponse | |
from azure.core.credentials import AzureKeyCredential | |
from azure.ai.textanalytics import TextAnalyticsClient |
# I want to use headers and not JSON to get next Link, and the Swagger didn't help | |
class MyPagingMethod(PagingProtocol): | |
def extract_continuation_token(self, pipeline_response, deserialized): | |
return pipeline_response.http_response.headers["x-ms-continuation-token"] | |
client.list(paging_method=MyPagingMethod()) | |
# I want to use headers and not JSON to get next Link |