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
{ | |
paths: { | |
/subscribers: { | |
get: { | |
parameters: [ | |
... | |
... | |
... | |
... | |
{ |
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
{ | |
paths: { | |
/operators/verify: { | |
post: { | |
parameters: [ | |
- { | |
- in: "body" | |
- schema: { | |
- $ref: "#/definitions/VerifyOperatorsRequest" | |
- } |
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
{ | |
paths: { | |
/groups/{group_id}/configuration/{namespace}: { | |
put: { | |
parameters: [ | |
... | |
{ | |
enum: [ | |
+ "SoracomAir" | |
"SoracomBeam" |
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
{ | |
info: { | |
- version: "20150930" | |
+ version: "20151120" | |
} | |
paths: { | |
/operators/{operator_id}/token: { | |
post: { | |
parameters: [ | |
+ { |
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
{ | |
definitions: { | |
Subscriber: { | |
properties: { | |
speed_class: { | |
- enum: [ | |
- "s1.minimum" | |
- "s1.slow" | |
- "s1.standard" | |
- "s1.fast" |
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
{ | |
definitions: { | |
Subscriber: { | |
properties: { | |
speed_class: { | |
+ enum: [ | |
+ "s1.minimum" | |
+ "s1.slow" | |
+ "s1.standard" | |
+ "s1.fast" |
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
diff --git a/.rubocop.yml b/.rubocop.yml | |
index 137ead8..f944ff7 100644 | |
--- a/.rubocop.yml | |
+++ b/.rubocop.yml | |
@@ -1 +1,43 @@ | |
-inherit_from: rubocop-todo.yml | |
+AllCops: | |
+ Exclude: | |
+ - lib/lineinput.rb | |
+ - lib/uuid.rb |
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
{ | |
paths: { | |
/subscribers: { | |
get: { | |
parameters: [ | |
... | |
... | |
... | |
{ | |
- description: "検索対象にするstatus。`|`で区切って複数指定することができる。指定可能な値の一覧はこちら" |
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
{ | |
paths: { | |
/operators: { | |
post: { | |
parameters: [ | |
{ | |
schema: { | |
- $ref: "#/definitions/RegisterOperatorsRequest" | |
+ $ref: "#/definitions/CreateOperatorRequest" | |
} |
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 System; | |
using System.Diagnostics; | |
namespace TestJob | |
{ | |
class Program | |
{ | |
static void Main() | |
{ | |
Console.WriteLine("testing node.js based command"); |