File tree Expand file tree Collapse file tree 3 files changed +9
-5
lines changed
cloudforce-one/threat-events/datasets Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 1
1
configured_endpoints : 1769
2
2
openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-22bd279cee32addc645f421ef52b9cc207ec998f883e77e580f7be79950833b4.yml
3
3
openapi_spec_hash : 3e0f59ac2722028954566a4c850e8849
4
- config_hash : 18e6b76de8b719dd7c9c28614ac32643
4
+ config_hash : 70c445587de6c1089e4d0eadb6eb9d9a
Original file line number Diff line number Diff line change @@ -10,7 +10,8 @@ const client = new Cloudflare({
10
10
} ) ;
11
11
12
12
describe ( 'resource health' , ( ) => {
13
- test ( 'get: only required params' , async ( ) => {
13
+ // TODO: HTTP 401 from prism
14
+ test . skip ( 'get: only required params' , async ( ) => {
14
15
const responsePromise = client . cloudforceOne . threatEvents . datasets . health . get (
15
16
'182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e' ,
16
17
{ account_id : 'account_id' } ,
@@ -24,7 +25,8 @@ describe('resource health', () => {
24
25
expect ( dataAndResponse . response ) . toBe ( rawResponse ) ;
25
26
} ) ;
26
27
27
- test ( 'get: required and optional params' , async ( ) => {
28
+ // TODO: HTTP 401 from prism
29
+ test . skip ( 'get: required and optional params' , async ( ) => {
28
30
const response = await client . cloudforceOne . threatEvents . datasets . health . get (
29
31
'182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e' ,
30
32
{ account_id : 'account_id' } ,
Original file line number Diff line number Diff line change @@ -10,7 +10,8 @@ const client = new Cloudflare({
10
10
} ) ;
11
11
12
12
describe ( 'resource connectors' , ( ) => {
13
- test ( 'create: only required params' , async ( ) => {
13
+ // TODO: consider oneOf instead of maxProperties to indicate that this can be either id or serial_number
14
+ test . skip ( 'create: only required params' , async ( ) => {
14
15
const responsePromise = client . magicTransit . connectors . create ( {
15
16
account_id : '023e105f4ecef8ad9ca31a8372d0c353' ,
16
17
device : { } ,
@@ -24,7 +25,8 @@ describe('resource connectors', () => {
24
25
expect ( dataAndResponse . response ) . toBe ( rawResponse ) ;
25
26
} ) ;
26
27
27
- test ( 'create: required and optional params' , async ( ) => {
28
+ // TODO: consider oneOf instead of maxProperties to indicate that this can be either id or serial_number
29
+ test . skip ( 'create: required and optional params' , async ( ) => {
28
30
const response = await client . magicTransit . connectors . create ( {
29
31
account_id : '023e105f4ecef8ad9ca31a8372d0c353' ,
30
32
device : { id : 'id' , serial_number : 'serial_number' } ,
You can’t perform that action at this time.
0 commit comments