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
using Grpc.Net.Client; | |
using System.Security.Authentication; | |
Console.WriteLine("Hello, World!"); | |
var endpointAddress = "https://localhost:8124"; | |
var apiPrefix = "grpc-api"; | |
var subscriptionKey = "<subscription-key>"; | |
GrpcChannel grpcChannel = CreateGrpcChannel(endpointAddress, apiPrefix, subscriptionKey); |
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
{ | |
"openapi": "3.0.1", | |
"info": { | |
"title": "Echo API", | |
"version": "1.0" | |
}, | |
"servers": [ | |
{ | |
"url": "http://echoapi.cloudapp.net/api" | |
}, |
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
syntax = "proto3"; | |
service TestService { | |
rpc Unary(Foo) returns (Foo); | |
rpc ClientStreaming(stream Foo) returns (Foo); | |
rpc ServerStreaming(Foo) returns (stream Foo); | |
rpc Duplex(stream Foo) returns (stream Foo); | |
} | |
message Foo { |
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
{ | |
"openapi": "3.0.1", | |
"info": { | |
"title": "Performance Testing API", | |
"version": "1.0" | |
}, | |
"servers": [ | |
{ | |
"url": "http://apim-sandbox-cloud-native.azure-api.net/echo" | |
}, |
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
<!-- | |
IMPORTANT: | |
- Policy fragment are included as-is whenever they are referenced. | |
- If using variables. Ensure they are setup before use. | |
- Copy and paste your code here or simply start coding | |
--> | |
<fragment> | |
<rate-limit-by-key calls="@(int.Parse((string)context.Variables["amountOfCalls"]))" renewal-period="@(int.Parse((string)context.Variables["renewalPeriod"]))" counter-key="@(context.Subscription.Id)" remaining-calls-variable-name="remainingCallsPerSubscription" /> | |
</fragment> |
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
<note> | |
<to>Tove</to> | |
<from>Jani</from> | |
<heading>Reminder</heading> | |
<body>Don't forget me this weekend!</body> | |
</note> |
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
<?xml version="1.0" encoding="utf-8" ?> | |
<!DOCTYPE order [ | |
<!ENTITY myExternalEntity SYSTEM "expressions.json"> | |
]> | |
<order>&myExternalEntity;</order> |
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
{ | |
"openapi": "3.0.1", | |
"info": { | |
"title": "Echo API", | |
"version": "1.0" | |
}, | |
"servers": [ | |
{ | |
"url": "http://apim-sandbox-cloud-native.azure-api.net/echo" | |
}, |
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
apiVersion: keda.sh/v1alpha1 | |
kind: ScaledObject | |
metadata: | |
name: {scaled-object-name} | |
spec: | |
scaleTargetRef: | |
name: foo | |
minReplicaCount: 1 # Optional. Default: 0 | |
maxReplicaCount: 100 # Optional. Default: 100 | |
triggers: |
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
name: Add issue to project | |
on: | |
issues: | |
types: | |
- opened | |
jobs: | |
track_issue: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Get project data |
NewerOlder