platform-api 2.3.0.pre.2 → 3.3.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,3 @@
1
1
  module PlatformAPI
2
- VERSION = '2.3.0.pre.2'
2
+ VERSION = '3.3.0'
3
3
  end
@@ -228,6 +228,15 @@
228
228
  "string"
229
229
  ]
230
230
  },
231
+ "country_of_residence": {
232
+ "description": "country where account owner resides",
233
+ "example": "United States",
234
+ "readOnly": false,
235
+ "type": [
236
+ "string",
237
+ "null"
238
+ ]
239
+ },
231
240
  "email": {
232
241
  "description": "unique email address of account",
233
242
  "example": "username@example.com",
@@ -359,6 +368,46 @@
359
368
  "type": [
360
369
  "boolean"
361
370
  ]
371
+ },
372
+ "acknowledged_msa": {
373
+ "deprecated": true,
374
+ "description": "deprecated. whether account has acknowledged the MSA terms of service",
375
+ "example": false,
376
+ "readOnly": true,
377
+ "type": [
378
+ "boolean"
379
+ ]
380
+ },
381
+ "acknowledged_msa_at": {
382
+ "deprecated": true,
383
+ "description": "deprecated. when account has acknowledged the MSA terms of service",
384
+ "example": "2012-01-01T12:00:00Z",
385
+ "format": "date-time",
386
+ "readOnly": true,
387
+ "type": [
388
+ "string",
389
+ "null"
390
+ ]
391
+ },
392
+ "italian_customer_terms": {
393
+ "deprecated": true,
394
+ "description": "deprecated. whether account has acknowledged the Italian customer terms of service",
395
+ "example": "affirmatively_accepted",
396
+ "readOnly": true,
397
+ "type": [
398
+ "string",
399
+ "null"
400
+ ]
401
+ },
402
+ "italian_partner_terms": {
403
+ "deprecated": true,
404
+ "description": "deprecated. whether account has acknowledged the Italian provider terms of service",
405
+ "example": "affirmatively_accepted",
406
+ "readOnly": true,
407
+ "type": [
408
+ "string",
409
+ "null"
410
+ ]
362
411
  }
363
412
  },
364
413
  "links": [
@@ -572,6 +621,21 @@
572
621
  "verified": {
573
622
  "$ref": "#/definitions/account/definitions/verified"
574
623
  },
624
+ "acknowledged_msa": {
625
+ "$ref": "#/definitions/account/definitions/acknowledged_msa"
626
+ },
627
+ "acknowledged_msa_at": {
628
+ "$ref": "#/definitions/account/definitions/acknowledged_msa_at"
629
+ },
630
+ "italian_customer_terms": {
631
+ "$ref": "#/definitions/account/definitions/italian_customer_terms"
632
+ },
633
+ "italian_partner_terms": {
634
+ "$ref": "#/definitions/account/definitions/italian_partner_terms"
635
+ },
636
+ "country_of_residence": {
637
+ "$ref": "#/definitions/account/definitions/country_of_residence"
638
+ },
575
639
  "default_organization": {
576
640
  "description": "team selected by default",
577
641
  "properties": {
@@ -607,7 +671,7 @@
607
671
  }
608
672
  },
609
673
  "add-on-action": {
610
- "description": "Add-on Actions are lifecycle operations for add-on provisioning and deprovisioning. They allow whitelisted add-on providers to (de)provision add-ons in the background and then report back when (de)provisioning is complete.",
674
+ "description": "Add-on Actions are lifecycle operations for add-on provisioning and deprovisioning. They allow add-on providers to (de)provision add-ons in the background and then report back when (de)provisioning is complete.",
611
675
  "$schema": "http://json-schema.org/draft-04/hyper-schema",
612
676
  "stability": "development",
613
677
  "strictProperties": true,
@@ -2140,6 +2204,157 @@
2140
2204
  }
2141
2205
  }
2142
2206
  },
2207
+ "allowed-add-on-service": {
2208
+ "description": "Entities that have been allowed to be used by a Team",
2209
+ "$schema": "http://json-schema.org/draft-04/hyper-schema",
2210
+ "stability": "prototype",
2211
+ "strictProperties": true,
2212
+ "title": "Heroku Platform API - Allowed Add-on Service",
2213
+ "type": [
2214
+ "object"
2215
+ ],
2216
+ "definitions": {
2217
+ "added_at": {
2218
+ "description": "when the add-on service was allowed",
2219
+ "example": "2012-01-01T12:00:00Z",
2220
+ "format": "date-time",
2221
+ "readOnly": true,
2222
+ "type": [
2223
+ "string"
2224
+ ]
2225
+ },
2226
+ "added_by": {
2227
+ "description": "the user which allowed the add-on service",
2228
+ "properties": {
2229
+ "email": {
2230
+ "$ref": "#/definitions/account/definitions/email",
2231
+ "type": [
2232
+ "string",
2233
+ "null"
2234
+ ]
2235
+ },
2236
+ "id": {
2237
+ "$ref": "#/definitions/account/definitions/id",
2238
+ "type": [
2239
+ "string",
2240
+ "null"
2241
+ ]
2242
+ }
2243
+ },
2244
+ "readOnly": true,
2245
+ "type": [
2246
+ "object"
2247
+ ]
2248
+ },
2249
+ "addon_service": {
2250
+ "description": "the add-on service allowed for use",
2251
+ "properties": {
2252
+ "id": {
2253
+ "$ref": "#/definitions/add-on-service/definitions/id"
2254
+ },
2255
+ "name": {
2256
+ "$ref": "#/definitions/add-on-service/definitions/name"
2257
+ },
2258
+ "human_name": {
2259
+ "$ref": "#/definitions/add-on-service/definitions/human_name"
2260
+ }
2261
+ },
2262
+ "readOnly": true,
2263
+ "type": [
2264
+ "object"
2265
+ ]
2266
+ },
2267
+ "id": {
2268
+ "description": "unique identifier for this allowed add-on service record",
2269
+ "example": "01234567-89ab-cdef-0123-456789abcdef",
2270
+ "format": "uuid",
2271
+ "readOnly": true,
2272
+ "type": [
2273
+ "string"
2274
+ ]
2275
+ },
2276
+ "identity": {
2277
+ "anyOf": [
2278
+ {
2279
+ "$ref": "#/definitions/allowed-add-on-service/definitions/id"
2280
+ },
2281
+ {
2282
+ "$ref": "#/definitions/add-on-service/definitions/name"
2283
+ }
2284
+ ]
2285
+ }
2286
+ },
2287
+ "links": [
2288
+ {
2289
+ "description": "List all allowed add-on services for a team",
2290
+ "href": "/teams/{(%23%2Fdefinitions%2Fteam%2Fdefinitions%2Fidentity)}/allowed-addon-services",
2291
+ "method": "GET",
2292
+ "rel": "instances",
2293
+ "targetSchema": {
2294
+ "items": {
2295
+ "$ref": "#/definitions/allowed-add-on-service"
2296
+ },
2297
+ "type": [
2298
+ "array"
2299
+ ]
2300
+ },
2301
+ "title": "List By Team"
2302
+ },
2303
+ {
2304
+ "description": "Allow an Add-on Service",
2305
+ "href": "/teams/{(%23%2Fdefinitions%2Fteam%2Fdefinitions%2Fidentity)}/allowed-addon-services",
2306
+ "method": "POST",
2307
+ "rel": "create",
2308
+ "schema": {
2309
+ "type": [
2310
+ "object"
2311
+ ],
2312
+ "properties": {
2313
+ "addon_service": {
2314
+ "description": "name of the add-on service to allow",
2315
+ "example": "heroku-postgresql",
2316
+ "type": [
2317
+ "string"
2318
+ ]
2319
+ }
2320
+ }
2321
+ },
2322
+ "targetSchema": {
2323
+ "items": {
2324
+ "$ref": "#/definitions/allowed-add-on-service"
2325
+ },
2326
+ "type": [
2327
+ "array"
2328
+ ]
2329
+ },
2330
+ "title": "Create By Team"
2331
+ },
2332
+ {
2333
+ "description": "Remove an allowed add-on service",
2334
+ "href": "/teams/{(%23%2Fdefinitions%2Fteam%2Fdefinitions%2Fidentity)}/allowed-addon-services/{(%23%2Fdefinitions%2Fallowed-add-on-service%2Fdefinitions%2Fidentity)}",
2335
+ "method": "DELETE",
2336
+ "rel": "destroy",
2337
+ "targetSchema": {
2338
+ "$ref": "#/definitions/allowed-add-on-service"
2339
+ },
2340
+ "title": "Delete By Team"
2341
+ }
2342
+ ],
2343
+ "properties": {
2344
+ "added_at": {
2345
+ "$ref": "#/definitions/allowed-add-on-service/definitions/added_at"
2346
+ },
2347
+ "added_by": {
2348
+ "$ref": "#/definitions/allowed-add-on-service/definitions/added_by"
2349
+ },
2350
+ "addon_service": {
2351
+ "$ref": "#/definitions/allowed-add-on-service/definitions/addon_service"
2352
+ },
2353
+ "id": {
2354
+ "$ref": "#/definitions/allowed-add-on-service/definitions/id"
2355
+ }
2356
+ }
2357
+ },
2143
2358
  "app-feature": {
2144
2359
  "description": "An app feature represents a Heroku labs capability that can be enabled or disabled for an app on Heroku.",
2145
2360
  "$schema": "http://json-schema.org/draft-04/hyper-schema",
@@ -4028,7 +4243,7 @@
4028
4243
  "$schema": "http://json-schema.org/draft-04/hyper-schema",
4029
4244
  "title": "Heroku Platform API - Audit Trail Archive",
4030
4245
  "description": "An audit trail archive represents a monthly json zipped file containing events",
4031
- "stability": "development",
4246
+ "stability": "production",
4032
4247
  "strictProperties": true,
4033
4248
  "type": [
4034
4249
  "object"
@@ -4047,12 +4262,24 @@
4047
4262
  },
4048
4263
  "month": {
4049
4264
  "description": "month of the archive",
4050
- "example": 10,
4265
+ "enum": [
4266
+ "01",
4267
+ "02",
4268
+ "03",
4269
+ "04",
4270
+ "05",
4271
+ "06",
4272
+ "07",
4273
+ "08",
4274
+ "09",
4275
+ "10",
4276
+ "11",
4277
+ "12"
4278
+ ],
4279
+ "example": "10",
4051
4280
  "readOnly": true,
4052
- "minimum": 1,
4053
- "maximum": 12,
4054
4281
  "type": [
4055
- "integer"
4282
+ "string"
4056
4283
  ]
4057
4284
  },
4058
4285
  "year": {
@@ -4131,6 +4358,215 @@
4131
4358
  }
4132
4359
  }
4133
4360
  },
4361
+ "audit-trail-event": {
4362
+ "$schema": "http://json-schema.org/draft-04/hyper-schema",
4363
+ "title": "Heroku Platform API - Audit Trail Event",
4364
+ "description": "An audit trail event represents some action on the platform",
4365
+ "stability": "production",
4366
+ "strictProperties": true,
4367
+ "type": [
4368
+ "object"
4369
+ ],
4370
+ "definitions": {
4371
+ "id": {
4372
+ "description": "unique identifier of event",
4373
+ "readOnly": true,
4374
+ "format": "uuid",
4375
+ "type": [
4376
+ "string"
4377
+ ]
4378
+ },
4379
+ "type": {
4380
+ "description": "type of event",
4381
+ "readOnly": true,
4382
+ "type": [
4383
+ "string"
4384
+ ]
4385
+ },
4386
+ "action": {
4387
+ "description": "action for the event",
4388
+ "readOnly": true,
4389
+ "type": [
4390
+ "string"
4391
+ ]
4392
+ },
4393
+ "actor": {
4394
+ "description": "user who caused event",
4395
+ "readOnly": true,
4396
+ "type": [
4397
+ "object"
4398
+ ],
4399
+ "properties": {
4400
+ "id": {
4401
+ "format": "uuid",
4402
+ "type": [
4403
+ "string"
4404
+ ]
4405
+ },
4406
+ "email": {
4407
+ "format": "email",
4408
+ "type": [
4409
+ "string"
4410
+ ]
4411
+ }
4412
+ }
4413
+ },
4414
+ "app": {
4415
+ "description": "app upon which event took place",
4416
+ "readOnly": true,
4417
+ "type": [
4418
+ "object"
4419
+ ],
4420
+ "properties": {
4421
+ "id": {
4422
+ "format": "uuid",
4423
+ "type": [
4424
+ "string"
4425
+ ]
4426
+ },
4427
+ "name": {
4428
+ "type": [
4429
+ "string"
4430
+ ]
4431
+ }
4432
+ }
4433
+ },
4434
+ "owner": {
4435
+ "description": "owner of the app targeted by the event",
4436
+ "readOnly": true,
4437
+ "type": [
4438
+ "object"
4439
+ ],
4440
+ "properties": {
4441
+ "id": {
4442
+ "format": "uuid",
4443
+ "type": [
4444
+ "string"
4445
+ ]
4446
+ },
4447
+ "email": {
4448
+ "format": "email",
4449
+ "type": [
4450
+ "string"
4451
+ ]
4452
+ }
4453
+ }
4454
+ },
4455
+ "enterprise_account": {
4456
+ "description": "enterprise account on which the event happened",
4457
+ "readOnly": true,
4458
+ "type": [
4459
+ "object"
4460
+ ],
4461
+ "properties": {
4462
+ "id": {
4463
+ "format": "uuid",
4464
+ "type": [
4465
+ "string"
4466
+ ]
4467
+ },
4468
+ "name": {
4469
+ "type": [
4470
+ "string"
4471
+ ]
4472
+ }
4473
+ }
4474
+ },
4475
+ "team": {
4476
+ "description": "team on which the event happened",
4477
+ "readOnly": true,
4478
+ "type": [
4479
+ "object"
4480
+ ],
4481
+ "properties": {
4482
+ "id": {
4483
+ "format": "uuid",
4484
+ "type": [
4485
+ "string"
4486
+ ]
4487
+ },
4488
+ "name": {
4489
+ "type": [
4490
+ "string"
4491
+ ]
4492
+ }
4493
+ }
4494
+ },
4495
+ "request": {
4496
+ "description": "information about where the action was triggered",
4497
+ "readOnly": true,
4498
+ "type": [
4499
+ "object"
4500
+ ],
4501
+ "properties": {
4502
+ "ip_address": {
4503
+ "format": "ipv4",
4504
+ "type": [
4505
+ "string"
4506
+ ]
4507
+ }
4508
+ }
4509
+ },
4510
+ "data": {
4511
+ "description": "data specific to the event",
4512
+ "readOnly": true,
4513
+ "type": [
4514
+ "object"
4515
+ ]
4516
+ },
4517
+ "created_at": {
4518
+ "description": "when event was created",
4519
+ "format": "date-time",
4520
+ "type": [
4521
+ "string"
4522
+ ]
4523
+ }
4524
+ },
4525
+ "links": [
4526
+ {
4527
+ "description": "List existing events. Returns all events for one date, defaulting to current date. Order, actor, action, and type, and date query params can be specified as query parameters. For example, '/enterprise-accounts/:id/events?order=desc&actor=user@example.com&action=create&type=app&date=2020-09-30' would return events in descending order and only return app created events by the user with user@example.com email address.",
4528
+ "href": "/enterprise-accounts/{(%23%2Fdefinitions%2Fenterprise-account%2Fdefinitions%2Fidentity)}/events",
4529
+ "method": "GET",
4530
+ "rel": "instances",
4531
+ "title": "List"
4532
+ }
4533
+ ],
4534
+ "properties": {
4535
+ "created_at": {
4536
+ "$ref": "#/definitions/audit-trail-event/definitions/created_at"
4537
+ },
4538
+ "id": {
4539
+ "$ref": "#/definitions/audit-trail-event/definitions/id"
4540
+ },
4541
+ "type": {
4542
+ "$ref": "#/definitions/audit-trail-event/definitions/type"
4543
+ },
4544
+ "action": {
4545
+ "$ref": "#/definitions/audit-trail-event/definitions/action"
4546
+ },
4547
+ "actor": {
4548
+ "$ref": "#/definitions/audit-trail-event/definitions/actor"
4549
+ },
4550
+ "app": {
4551
+ "$ref": "#/definitions/audit-trail-event/definitions/app"
4552
+ },
4553
+ "owner": {
4554
+ "$ref": "#/definitions/audit-trail-event/definitions/owner"
4555
+ },
4556
+ "enterprise_account": {
4557
+ "$ref": "#/definitions/audit-trail-event/definitions/enterprise_account"
4558
+ },
4559
+ "team": {
4560
+ "$ref": "#/definitions/audit-trail-event/definitions/team"
4561
+ },
4562
+ "request": {
4563
+ "$ref": "#/definitions/audit-trail-event/definitions/request"
4564
+ },
4565
+ "data": {
4566
+ "$ref": "#/definitions/audit-trail-event/definitions/data"
4567
+ }
4568
+ }
4569
+ },
4134
4570
  "build": {
4135
4571
  "$schema": "http://json-schema.org/draft-04/hyper-schema",
4136
4572
  "description": "A build represents the process of transforming a code tarball into a slug",
@@ -5093,22 +5529,80 @@
5093
5529
  "type": [
5094
5530
  "string"
5095
5531
  ]
5532
+ },
5533
+ "sni_endpoint": {
5534
+ "description": "null or unique identifier or name for SNI endpoint",
5535
+ "type": [
5536
+ "null",
5537
+ "string"
5538
+ ]
5096
5539
  }
5097
5540
  },
5098
5541
  "links": [
5099
5542
  {
5100
- "description": "Create a new domain.",
5101
- "href": "/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}/domains",
5102
- "method": "POST",
5103
- "rel": "create",
5543
+ "deactivate_on": "2021-10-31",
5544
+ "description": "Create a new domain. Deprecated in favor of this same endpoint, but with a new required attribute of `sni_endpoint`. During the transitional phase sni_endpoint can be omitted entirely (current behavior), can be a valid id, or can be null which will skip auto-association.",
5545
+ "href": "/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}/domains",
5546
+ "method": "POST",
5547
+ "rel": "create",
5548
+ "schema": {
5549
+ "properties": {
5550
+ "hostname": {
5551
+ "$ref": "#/definitions/domain/definitions/hostname"
5552
+ }
5553
+ },
5554
+ "required": [
5555
+ "hostname"
5556
+ ],
5557
+ "type": [
5558
+ "object"
5559
+ ]
5560
+ },
5561
+ "targetSchema": {
5562
+ "$ref": "#/definitions/domain"
5563
+ },
5564
+ "title": "Create - Deprecated"
5565
+ },
5566
+ {
5567
+ "description": "Create a new domain.",
5568
+ "href": "/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}/domains",
5569
+ "method": "POST",
5570
+ "rel": "create",
5571
+ "schema": {
5572
+ "properties": {
5573
+ "hostname": {
5574
+ "$ref": "#/definitions/domain/definitions/hostname"
5575
+ },
5576
+ "sni_endpoint": {
5577
+ "$ref": "#/definitions/domain/definitions/sni_endpoint"
5578
+ }
5579
+ },
5580
+ "required": [
5581
+ "hostname",
5582
+ "sni_endpoint"
5583
+ ],
5584
+ "type": [
5585
+ "object"
5586
+ ]
5587
+ },
5588
+ "targetSchema": {
5589
+ "$ref": "#/definitions/domain"
5590
+ },
5591
+ "title": "Create"
5592
+ },
5593
+ {
5594
+ "description": "Associate an SNI endpoint",
5595
+ "href": "/apps/{(%23%2Fdefinitions%2Fapp%2Fdefinitions%2Fidentity)}/domains/{(%23%2Fdefinitions%2Fdomain%2Fdefinitions%2Fidentity)}",
5596
+ "method": "PATCH",
5597
+ "rel": "update",
5104
5598
  "schema": {
5105
5599
  "properties": {
5106
- "hostname": {
5107
- "$ref": "#/definitions/domain/definitions/hostname"
5600
+ "sni_endpoint": {
5601
+ "$ref": "#/definitions/domain/definitions/sni_endpoint"
5108
5602
  }
5109
5603
  },
5110
5604
  "required": [
5111
- "hostname"
5605
+ "sni_endpoint"
5112
5606
  ],
5113
5607
  "type": [
5114
5608
  "object"
@@ -5117,7 +5611,7 @@
5117
5611
  "targetSchema": {
5118
5612
  "$ref": "#/definitions/domain"
5119
5613
  },
5120
- "title": "Create"
5614
+ "title": "Update"
5121
5615
  },
5122
5616
  {
5123
5617
  "description": "Delete an existing domain",
@@ -5196,6 +5690,21 @@
5196
5690
  },
5197
5691
  "status": {
5198
5692
  "$ref": "#/definitions/domain/definitions/status"
5693
+ },
5694
+ "sni_endpoint": {
5695
+ "description": "sni endpoint the domain is associated with",
5696
+ "properties": {
5697
+ "name": {
5698
+ "$ref": "#/definitions/sni-endpoint/definitions/name"
5699
+ },
5700
+ "id": {
5701
+ "$ref": "#/definitions/sni-endpoint/definitions/id"
5702
+ }
5703
+ },
5704
+ "type": [
5705
+ "null",
5706
+ "object"
5707
+ ]
5199
5708
  }
5200
5709
  }
5201
5710
  },
@@ -6000,8 +6509,8 @@
6000
6509
  "description": "Retrieves usage for an enterprise account for a range of days. Start and end dates can be specified as query parameters using the date format, YYYY-MM-DD format. For example, '/enterprise-accounts/example-account/usage/daily?start=2019-01-01&end=2019-01-31' specifies all days in January for 2019.",
6001
6510
  "href": "/enterprise-accounts/{(%23%2Fdefinitions%2Fenterprise-account%2Fdefinitions%2Fid)}/usage/daily",
6002
6511
  "method": "GET",
6003
- "title": "Info",
6004
6512
  "rel": "instances",
6513
+ "title": "Info",
6005
6514
  "targetSchema": {
6006
6515
  "items": {
6007
6516
  "$ref": "#/definitions/enterprise-account-usage-daily"
@@ -6421,222 +6930,6 @@
6421
6930
  }
6422
6931
  }
6423
6932
  },
6424
- "event": {
6425
- "$schema": "http://json-schema.org/draft-04/hyper-schema",
6426
- "title": "Heroku Platform API - Audit Trail Event",
6427
- "description": "An audit trail event represents some action on the platform",
6428
- "stability": "development",
6429
- "strictProperties": true,
6430
- "type": [
6431
- "object"
6432
- ],
6433
- "definitions": {
6434
- "id": {
6435
- "description": "unique identifier of event",
6436
- "readOnly": true,
6437
- "format": "uuid",
6438
- "type": [
6439
- "string"
6440
- ]
6441
- },
6442
- "identity": {
6443
- "anyOf": [
6444
- {
6445
- "$ref": "#/definitions/event/definitions/id"
6446
- }
6447
- ]
6448
- },
6449
- "type": {
6450
- "description": "type of event",
6451
- "readOnly": true,
6452
- "type": [
6453
- "string"
6454
- ]
6455
- },
6456
- "action": {
6457
- "description": "action for the event",
6458
- "readOnly": true,
6459
- "type": [
6460
- "string"
6461
- ]
6462
- },
6463
- "actor": {
6464
- "description": "user who caused event",
6465
- "readOnly": true,
6466
- "type": [
6467
- "object"
6468
- ],
6469
- "properties": {
6470
- "id": {
6471
- "format": "uuid",
6472
- "type": [
6473
- "string"
6474
- ]
6475
- },
6476
- "email": {
6477
- "format": "email",
6478
- "type": [
6479
- "string"
6480
- ]
6481
- }
6482
- }
6483
- },
6484
- "app": {
6485
- "description": "app upon which event took place",
6486
- "readOnly": true,
6487
- "type": [
6488
- "object"
6489
- ],
6490
- "properties": {
6491
- "id": {
6492
- "format": "uuid",
6493
- "type": [
6494
- "string"
6495
- ]
6496
- },
6497
- "name": {
6498
- "type": [
6499
- "string"
6500
- ]
6501
- }
6502
- }
6503
- },
6504
- "owner": {
6505
- "description": "owner of the app targeted by the event",
6506
- "readOnly": true,
6507
- "type": [
6508
- "object"
6509
- ],
6510
- "properties": {
6511
- "id": {
6512
- "format": "uuid",
6513
- "type": [
6514
- "string"
6515
- ]
6516
- },
6517
- "email": {
6518
- "format": "email",
6519
- "type": [
6520
- "string"
6521
- ]
6522
- }
6523
- }
6524
- },
6525
- "enterprise_account": {
6526
- "description": "enterprise account on which the event happened",
6527
- "readOnly": true,
6528
- "type": [
6529
- "object"
6530
- ],
6531
- "properties": {
6532
- "id": {
6533
- "format": "uuid",
6534
- "type": [
6535
- "string"
6536
- ]
6537
- },
6538
- "name": {
6539
- "type": [
6540
- "string"
6541
- ]
6542
- }
6543
- }
6544
- },
6545
- "team": {
6546
- "description": "team on which the event happened",
6547
- "readOnly": true,
6548
- "type": [
6549
- "object"
6550
- ],
6551
- "properties": {
6552
- "id": {
6553
- "format": "uuid",
6554
- "type": [
6555
- "string"
6556
- ]
6557
- },
6558
- "name": {
6559
- "type": [
6560
- "string"
6561
- ]
6562
- }
6563
- }
6564
- },
6565
- "request": {
6566
- "description": "information about where the action was triggered",
6567
- "readOnly": true,
6568
- "type": [
6569
- "object"
6570
- ],
6571
- "properties": {
6572
- "ip_address": {
6573
- "format": "ipv4",
6574
- "type": [
6575
- "string"
6576
- ]
6577
- }
6578
- }
6579
- },
6580
- "data": {
6581
- "description": "data specific to the event",
6582
- "readOnly": true,
6583
- "type": [
6584
- "object"
6585
- ]
6586
- },
6587
- "created_at": {
6588
- "description": "when event was created",
6589
- "format": "date-time",
6590
- "type": [
6591
- "string"
6592
- ]
6593
- }
6594
- },
6595
- "links": [
6596
- {
6597
- "description": "List existing events.",
6598
- "href": "/enterprise-accounts/{(%23%2Fdefinitions%2Fenterprise-account%2Fdefinitions%2Fidentity)}/events",
6599
- "method": "GET",
6600
- "rel": "instances",
6601
- "title": "List"
6602
- }
6603
- ],
6604
- "properties": {
6605
- "created_at": {
6606
- "$ref": "#/definitions/event/definitions/created_at"
6607
- },
6608
- "id": {
6609
- "$ref": "#/definitions/event/definitions/id"
6610
- },
6611
- "type": {
6612
- "$ref": "#/definitions/event/definitions/type"
6613
- },
6614
- "action": {
6615
- "$ref": "#/definitions/event/definitions/action"
6616
- },
6617
- "actor": {
6618
- "$ref": "#/definitions/event/definitions/actor"
6619
- },
6620
- "app": {
6621
- "$ref": "#/definitions/event/definitions/app"
6622
- },
6623
- "owner": {
6624
- "$ref": "#/definitions/event/definitions/owner"
6625
- },
6626
- "enterprise_account": {
6627
- "$ref": "#/definitions/event/definitions/enterprise_account"
6628
- },
6629
- "team": {
6630
- "$ref": "#/definitions/event/definitions/team"
6631
- },
6632
- "request": {
6633
- "$ref": "#/definitions/event/definitions/request"
6634
- },
6635
- "data": {
6636
- "$ref": "#/definitions/event/definitions/data"
6637
- }
6638
- }
6639
- },
6640
6933
  "filter-apps": {
6641
6934
  "description": "Filters are special endpoints to allow for API consumers to specify a subset of resources to consume in order to reduce the number of requests that are performed. Each filter endpoint endpoint is responsible for determining its supported request format. The endpoints are over POST in order to handle large request bodies without hitting request uri query length limitations, but the requests themselves are idempotent and will not have side effects.",
6642
6935
  "$schema": "http://json-schema.org/draft-04/hyper-schema",
@@ -11495,7 +11788,7 @@
11495
11788
  ]
11496
11789
  },
11497
11790
  "pr_number": {
11498
- "description": "GitHub Pull Request number if the Review app was created automatically",
11791
+ "description": "pull request number the review app is built for",
11499
11792
  "example": 24,
11500
11793
  "readOnly": true,
11501
11794
  "type": [
@@ -11515,6 +11808,9 @@
11515
11808
  "branch": {
11516
11809
  "$ref": "#/definitions/review-app/definitions/branch"
11517
11810
  },
11811
+ "pr_number": {
11812
+ "$ref": "#/definitions/review-app/definitions/pr_number"
11813
+ },
11518
11814
  "pipeline": {
11519
11815
  "$ref": "#/definitions/pipeline/definitions/id"
11520
11816
  },
@@ -12119,7 +12415,7 @@
12119
12415
  "size": 2048,
12120
12416
  "stack": {
12121
12417
  "id": "01234567-89ab-cdef-0123-456789abcdef",
12122
- "name": "cedar-14"
12418
+ "name": "heroku-18"
12123
12419
  },
12124
12420
  "updated_at": "2012-01-01T12:00:00Z"
12125
12421
  }
@@ -12262,7 +12558,8 @@
12262
12558
  "example": "example.herokussl.com",
12263
12559
  "readOnly": false,
12264
12560
  "type": [
12265
- "string"
12561
+ "string",
12562
+ "null"
12266
12563
  ]
12267
12564
  },
12268
12565
  "created_at": {
@@ -12318,6 +12615,26 @@
12318
12615
  "type": [
12319
12616
  "string"
12320
12617
  ]
12618
+ },
12619
+ "domains": {
12620
+ "description": "domains associated with this SSL certificate",
12621
+ "type": [
12622
+ "array"
12623
+ ],
12624
+ "readOnly": true,
12625
+ "items": {
12626
+ "$ref": "#/definitions/domain/definitions/id"
12627
+ }
12628
+ },
12629
+ "display_name": {
12630
+ "description": "unique name for SSL certificate",
12631
+ "example": "example",
12632
+ "pattern": "^[a-z][a-z0-9-]{2,29}$",
12633
+ "readOnly": false,
12634
+ "type": [
12635
+ "string",
12636
+ "null"
12637
+ ]
12321
12638
  }
12322
12639
  },
12323
12640
  "links": [
@@ -12427,8 +12744,67 @@
12427
12744
  "name": {
12428
12745
  "$ref": "#/definitions/sni-endpoint/definitions/name"
12429
12746
  },
12430
- "updated_at": {
12431
- "$ref": "#/definitions/sni-endpoint/definitions/updated_at"
12747
+ "updated_at": {
12748
+ "$ref": "#/definitions/sni-endpoint/definitions/updated_at"
12749
+ },
12750
+ "display_name": {
12751
+ "$ref": "#/definitions/sni-endpoint/definitions/display_name"
12752
+ },
12753
+ "domains": {
12754
+ "$ref": "#/definitions/sni-endpoint/definitions/domains"
12755
+ },
12756
+ "app": {
12757
+ "description": "application that this SSL certificate is on",
12758
+ "properties": {
12759
+ "id": {
12760
+ "$ref": "#/definitions/app/definitions/id"
12761
+ },
12762
+ "name": {
12763
+ "$ref": "#/definitions/app/definitions/name"
12764
+ }
12765
+ },
12766
+ "strictProperties": true,
12767
+ "type": [
12768
+ "object"
12769
+ ]
12770
+ },
12771
+ "ssl_cert": {
12772
+ "description": "certificate provided by this endpoint",
12773
+ "type": [
12774
+ "object"
12775
+ ],
12776
+ "properties": {
12777
+ "ca_signed?": {
12778
+ "$ref": "#/definitions/ssl-endpoint/definitions/ca_signed?"
12779
+ },
12780
+ "cert_domains": {
12781
+ "$ref": "#/definitions/ssl-endpoint/definitions/cert_domains"
12782
+ },
12783
+ "expires_at": {
12784
+ "$ref": "#/definitions/ssl-endpoint/definitions/expires_at"
12785
+ },
12786
+ "issuer": {
12787
+ "$ref": "#/definitions/ssl-endpoint/definitions/issuer"
12788
+ },
12789
+ "self_signed?": {
12790
+ "$ref": "#/definitions/ssl-endpoint/definitions/self_signed?"
12791
+ },
12792
+ "starts_at": {
12793
+ "$ref": "#/definitions/ssl-endpoint/definitions/starts_at"
12794
+ },
12795
+ "subject": {
12796
+ "$ref": "#/definitions/ssl-endpoint/definitions/subject"
12797
+ },
12798
+ "id": {
12799
+ "description": "unique identifier of this SSL certificate",
12800
+ "example": "01234567-89ab-cdef-0123-456789abcdef",
12801
+ "format": "uuid",
12802
+ "readOnly": true,
12803
+ "type": [
12804
+ "string"
12805
+ ]
12806
+ }
12807
+ }
12432
12808
  }
12433
12809
  }
12434
12810
  },
@@ -12742,6 +13118,140 @@
12742
13118
  }
12743
13119
  }
12744
13120
  },
13121
+ "space-topology": {
13122
+ "description": "Space Topology provides you with a mechanism for viewing all the running dynos, formations and applications for a space. This is the same data thats used to power our DNS Service Discovery.",
13123
+ "$schema": "http://json-schema.org/draft-04/hyper-schema",
13124
+ "stability": "prototype",
13125
+ "strictProperties": true,
13126
+ "title": "Heroku Platform API - Space Topology",
13127
+ "type": [
13128
+ "object"
13129
+ ],
13130
+ "definitions": {
13131
+ "version": {
13132
+ "description": "version of the space topology payload",
13133
+ "example": 1,
13134
+ "readOnly": true,
13135
+ "type": [
13136
+ "integer"
13137
+ ]
13138
+ },
13139
+ "dyno": {
13140
+ "description": "A dyno",
13141
+ "properties": {
13142
+ "id": {
13143
+ "$ref": "#/definitions/dyno/definitions/id"
13144
+ },
13145
+ "number": {
13146
+ "description": "process number, e.g. 1 in web.1",
13147
+ "example": 1,
13148
+ "type": [
13149
+ "integer"
13150
+ ]
13151
+ },
13152
+ "private_ip": {
13153
+ "description": "RFC1918 Address of Dyno",
13154
+ "example": "10.0.134.42",
13155
+ "type": [
13156
+ "string"
13157
+ ]
13158
+ },
13159
+ "hostname": {
13160
+ "description": "localspace hostname of resource",
13161
+ "example": "1.example-app-90210.app.localspace",
13162
+ "type": [
13163
+ "string"
13164
+ ]
13165
+ }
13166
+ },
13167
+ "type": [
13168
+ "object"
13169
+ ]
13170
+ },
13171
+ "formation": {
13172
+ "description": "formations for application",
13173
+ "properties": {
13174
+ "id": {
13175
+ "$ref": "#/definitions/formation/definitions/id"
13176
+ },
13177
+ "process_type": {
13178
+ "description": "Name of process type",
13179
+ "example": "web",
13180
+ "type": [
13181
+ "string"
13182
+ ]
13183
+ },
13184
+ "dynos": {
13185
+ "description": "Current dynos for application",
13186
+ "items": {
13187
+ "$ref": "#/definitions/space-topology/definitions/dyno"
13188
+ },
13189
+ "type": [
13190
+ "array"
13191
+ ]
13192
+ }
13193
+ },
13194
+ "type": [
13195
+ "object"
13196
+ ]
13197
+ }
13198
+ },
13199
+ "links": [
13200
+ {
13201
+ "description": "Current space topology",
13202
+ "href": "/spaces/{(%23%2Fdefinitions%2Fspace%2Fdefinitions%2Fidentity)}/topology",
13203
+ "method": "GET",
13204
+ "rel": "self",
13205
+ "targetSchema": {
13206
+ "$ref": "#/definitions/space-topology"
13207
+ },
13208
+ "title": "Topology"
13209
+ }
13210
+ ],
13211
+ "properties": {
13212
+ "version": {
13213
+ "$ref": "#/definitions/space-topology/definitions/version"
13214
+ },
13215
+ "apps": {
13216
+ "description": "The apps within this space",
13217
+ "type": [
13218
+ "array"
13219
+ ],
13220
+ "readOnly": true,
13221
+ "items": {
13222
+ "type": [
13223
+ "object"
13224
+ ],
13225
+ "properties": {
13226
+ "id": {
13227
+ "$ref": "#/definitions/app/definitions/id",
13228
+ "readOnly": true
13229
+ },
13230
+ "domains": {
13231
+ "example": [
13232
+ "example.com",
13233
+ "example.net"
13234
+ ],
13235
+ "readOnly": true,
13236
+ "type": [
13237
+ "array"
13238
+ ]
13239
+ },
13240
+ "formation": {
13241
+ "description": "formations for application",
13242
+ "items": {
13243
+ "$ref": "#/definitions/space-topology/definitions/formation"
13244
+ },
13245
+ "type": [
13246
+ "array"
13247
+ ],
13248
+ "readOnly": true
13249
+ }
13250
+ }
13251
+ }
13252
+ }
13253
+ }
13254
+ },
12745
13255
  "space-transfer": {
12746
13256
  "description": "Transfer spaces between enterprise teams with the same Enterprise Account.",
12747
13257
  "$schema": "http://json-schema.org/draft-04/hyper-schema",
@@ -13046,6 +13556,24 @@
13046
13556
  "object"
13047
13557
  ],
13048
13558
  "definitions": {
13559
+ "acm": {
13560
+ "readOnly": true,
13561
+ "type": [
13562
+ "boolean"
13563
+ ]
13564
+ },
13565
+ "ca_signed?": {
13566
+ "readOnly": true,
13567
+ "type": [
13568
+ "boolean"
13569
+ ]
13570
+ },
13571
+ "cert_domains": {
13572
+ "readOnly": true,
13573
+ "type": [
13574
+ "array"
13575
+ ]
13576
+ },
13049
13577
  "certificate_chain": {
13050
13578
  "description": "raw contents of the public certificate chain (eg: .crt or .pem file)",
13051
13579
  "example": "-----BEGIN CERTIFICATE----- ...",
@@ -13071,6 +13599,23 @@
13071
13599
  "string"
13072
13600
  ]
13073
13601
  },
13602
+ "display_name": {
13603
+ "description": "unique name for SSL endpoint",
13604
+ "example": "example",
13605
+ "pattern": "^[a-z][a-z0-9-]{2,29}$",
13606
+ "readOnly": false,
13607
+ "type": [
13608
+ "string",
13609
+ "null"
13610
+ ]
13611
+ },
13612
+ "expires_at": {
13613
+ "readOnly": true,
13614
+ "format": "date-time",
13615
+ "type": [
13616
+ "string"
13617
+ ]
13618
+ },
13074
13619
  "id": {
13075
13620
  "description": "unique identifier of this SSL endpoint",
13076
13621
  "example": "01234567-89ab-cdef-0123-456789abcdef",
@@ -13090,6 +13635,12 @@
13090
13635
  }
13091
13636
  ]
13092
13637
  },
13638
+ "issuer": {
13639
+ "readOnly": true,
13640
+ "type": [
13641
+ "string"
13642
+ ]
13643
+ },
13093
13644
  "name": {
13094
13645
  "description": "unique name for SSL endpoint",
13095
13646
  "example": "example",
@@ -13116,6 +13667,25 @@
13116
13667
  "string"
13117
13668
  ]
13118
13669
  },
13670
+ "self_signed?": {
13671
+ "readOnly": true,
13672
+ "type": [
13673
+ "boolean"
13674
+ ]
13675
+ },
13676
+ "starts_at": {
13677
+ "readOnly": true,
13678
+ "format": "date-time",
13679
+ "type": [
13680
+ "string"
13681
+ ]
13682
+ },
13683
+ "subject": {
13684
+ "readOnly": true,
13685
+ "type": [
13686
+ "string"
13687
+ ]
13688
+ },
13119
13689
  "updated_at": {
13120
13690
  "description": "when endpoint was updated",
13121
13691
  "example": "2012-01-01T12:00:00Z",
@@ -13244,12 +13814,62 @@
13244
13814
  "created_at": {
13245
13815
  "$ref": "#/definitions/ssl-endpoint/definitions/created_at"
13246
13816
  },
13817
+ "display_name": {
13818
+ "$ref": "#/definitions/ssl-endpoint/definitions/display_name"
13819
+ },
13820
+ "domains": {
13821
+ "description": "domains associated with this endpoint",
13822
+ "type": [
13823
+ "array"
13824
+ ],
13825
+ "items": {
13826
+ "$ref": "#/definitions/domain/definitions/id"
13827
+ }
13828
+ },
13247
13829
  "id": {
13248
13830
  "$ref": "#/definitions/ssl-endpoint/definitions/id"
13249
13831
  },
13250
13832
  "name": {
13251
13833
  "$ref": "#/definitions/ssl-endpoint/definitions/name"
13252
13834
  },
13835
+ "ssl_cert": {
13836
+ "description": "certificate provided by this endpoint",
13837
+ "type": [
13838
+ "object"
13839
+ ],
13840
+ "properties": {
13841
+ "ca_signed?": {
13842
+ "$ref": "#/definitions/ssl-endpoint/definitions/ca_signed?"
13843
+ },
13844
+ "cert_domains": {
13845
+ "$ref": "#/definitions/ssl-endpoint/definitions/cert_domains"
13846
+ },
13847
+ "expires_at": {
13848
+ "$ref": "#/definitions/ssl-endpoint/definitions/expires_at"
13849
+ },
13850
+ "issuer": {
13851
+ "$ref": "#/definitions/ssl-endpoint/definitions/issuer"
13852
+ },
13853
+ "self_signed?": {
13854
+ "$ref": "#/definitions/ssl-endpoint/definitions/self_signed?"
13855
+ },
13856
+ "starts_at": {
13857
+ "$ref": "#/definitions/ssl-endpoint/definitions/starts_at"
13858
+ },
13859
+ "subject": {
13860
+ "$ref": "#/definitions/ssl-endpoint/definitions/subject"
13861
+ },
13862
+ "id": {
13863
+ "description": "unique identifier of this SSL certificate",
13864
+ "example": "01234567-89ab-cdef-0123-456789abcdef",
13865
+ "format": "uuid",
13866
+ "readOnly": true,
13867
+ "type": [
13868
+ "string"
13869
+ ]
13870
+ }
13871
+ }
13872
+ },
13253
13873
  "updated_at": {
13254
13874
  "$ref": "#/definitions/ssl-endpoint/definitions/updated_at"
13255
13875
  }
@@ -13303,7 +13923,7 @@
13303
13923
  },
13304
13924
  "name": {
13305
13925
  "description": "unique name of stack",
13306
- "example": "cedar-14",
13926
+ "example": "heroku-18",
13307
13927
  "readOnly": true,
13308
13928
  "type": [
13309
13929
  "string"
@@ -14856,7 +15476,17 @@
14856
15476
  "$ref": "#/definitions/team/definitions/identity"
14857
15477
  },
14858
15478
  "whitelisting-enabled": {
14859
- "description": "Whether whitelisting rules should be applied to add-on installations",
15479
+ "deactivate_on": "2021-02-05",
15480
+ "description": "Whether whitelisting rules should be applied to add-on installations. Deprecated in favor of `addons-controls`",
15481
+ "example": true,
15482
+ "readOnly": false,
15483
+ "type": [
15484
+ "boolean",
15485
+ "null"
15486
+ ]
15487
+ },
15488
+ "addons-controls": {
15489
+ "description": "Whether add-on service rules should be applied to add-on installations",
14860
15490
  "example": true,
14861
15491
  "readOnly": false,
14862
15492
  "type": [
@@ -14888,6 +15518,9 @@
14888
15518
  "properties": {
14889
15519
  "whitelisting-enabled": {
14890
15520
  "$ref": "#/definitions/team-preferences/definitions/whitelisting-enabled"
15521
+ },
15522
+ "addons-controls": {
15523
+ "$ref": "#/definitions/team-preferences/definitions/addons-controls"
14891
15524
  }
14892
15525
  }
14893
15526
  },
@@ -14903,6 +15536,9 @@
14903
15536
  },
14904
15537
  "whitelisting-enabled": {
14905
15538
  "$ref": "#/definitions/team-preferences/definitions/whitelisting-enabled"
15539
+ },
15540
+ "addons-controls": {
15541
+ "$ref": "#/definitions/team-preferences/definitions/addons-controls"
14906
15542
  }
14907
15543
  }
14908
15544
  },
@@ -15035,7 +15671,7 @@
15035
15671
  },
15036
15672
  "links": [
15037
15673
  {
15038
- "description": "Retrieves usage for an enterprise team for a range of days. Start and end dates can be specified as query parameters using the date format, YYYY-MM-DD format. For example, '/teams/example-team/usage?start=2019-01-01&end=2019-01-31' specifies all days in January for 2019.",
15674
+ "description": "Retrieves usage for an enterprise team for a range of days. Start and end dates can be specified as query parameters using the date format, YYYY-MM-DD format. For example, '/teams/example-team/usage/daily?start=2019-01-01&end=2019-01-31' specifies all days in January for 2019.",
15039
15675
  "href": "/teams/{(%23%2Fdefinitions%2Fteam%2Fdefinitions%2Fid)}/usage/daily",
15040
15676
  "method": "GET",
15041
15677
  "title": "Info",
@@ -15196,11 +15832,11 @@
15196
15832
  },
15197
15833
  "links": [
15198
15834
  {
15199
- "description": "Retrieves usage for an enterprise team for a range of months. Start and end dates can be specified as query parameters using the date format, YYYY-MM format. For example, '/teams/example-team/usage?start=2019-01&end=2019-02' specifies usage in January and February for 2019. If no end date is specified, one month of usage is returned.",
15835
+ "description": "Retrieves usage for an enterprise team for a range of months. Start and end dates can be specified as query parameters using the date format, YYYY-MM format. For example, '/teams/example-team/usage/monthly?start=2019-01&end=2019-02' specifies usage in January and February for 2019. If no end date is specified, one month of usage is returned.",
15200
15836
  "href": "/teams/{(%23%2Fdefinitions%2Fteam%2Fdefinitions%2Fid)}/usage/monthly",
15201
15837
  "method": "GET",
15202
- "rel": "instances",
15203
15838
  "title": "Info",
15839
+ "rel": "instances",
15204
15840
  "targetSchema": {
15205
15841
  "items": {
15206
15842
  "$ref": "#/definitions/team-usage-monthly"
@@ -16828,11 +17464,34 @@
16828
17464
  "$ref": "#/definitions/vpn-connection"
16829
17465
  },
16830
17466
  "title": "Info"
17467
+ },
17468
+ {
17469
+ "description": "Update a VPN connection in a private space.",
17470
+ "href": "/spaces/{(%23%2Fdefinitions%2Fspace%2Fdefinitions%2Fidentity)}/vpn-connections/{(%23%2Fdefinitions%2Fvpn-connection%2Fdefinitions%2Fidentity)}",
17471
+ "rel": "update",
17472
+ "schema": {
17473
+ "properties": {
17474
+ "routable_cidrs": {
17475
+ "$ref": "#/definitions/vpn-connection/definitions/routable_cidrs"
17476
+ }
17477
+ },
17478
+ "required": [
17479
+ "routable_cidrs"
17480
+ ],
17481
+ "type": [
17482
+ "object"
17483
+ ]
17484
+ },
17485
+ "targetSchema": {
17486
+ "$ref": "#/definitions/vpn-connection"
17487
+ },
17488
+ "method": "PATCH",
17489
+ "title": "Update"
16831
17490
  }
16832
17491
  ]
16833
17492
  },
16834
17493
  "whitelisted-add-on-service": {
16835
- "description": "Entities that have been whitelisted to be used by an Team",
17494
+ "description": "Entities that have been whitelisted to be used by a Team. Deprecated in favor of [Allowed Add-on Service](#allowed-add-on-service) endpoints.",
16836
17495
  "$schema": "http://json-schema.org/draft-04/hyper-schema",
16837
17496
  "stability": "prototype",
16838
17497
  "strictProperties": true,
@@ -16913,7 +17572,8 @@
16913
17572
  },
16914
17573
  "links": [
16915
17574
  {
16916
- "description": "List all whitelisted Add-on Services for an Team",
17575
+ "deactivate_on": "2021-02-05",
17576
+ "description": "List all whitelisted Add-on Services for a Team - Deprecated in favor of [`GET /teams/{team_name_or_id}/allowed-addon-services`](#allowed-add-on-service-list-by-team) endpoint.",
16917
17577
  "href": "/teams/{(%23%2Fdefinitions%2Fteam%2Fdefinitions%2Fidentity)}/whitelisted-addon-services",
16918
17578
  "method": "GET",
16919
17579
  "rel": "instances",
@@ -16925,10 +17585,11 @@
16925
17585
  "array"
16926
17586
  ]
16927
17587
  },
16928
- "title": "List By Team"
17588
+ "title": "List By Team - Deprecated"
16929
17589
  },
16930
17590
  {
16931
- "description": "Whitelist an Add-on Service",
17591
+ "deactivate_on": "2021-02-05",
17592
+ "description": "Whitelist an Add-on Service - Deprecated in favor of [`POST /teams/{team_name_or_id}/allowed-addon-services`](#allowed-add-on-service-create-by-team) endpoint.",
16932
17593
  "href": "/teams/{(%23%2Fdefinitions%2Fteam%2Fdefinitions%2Fidentity)}/whitelisted-addon-services",
16933
17594
  "method": "POST",
16934
17595
  "rel": "create",
@@ -16954,17 +17615,18 @@
16954
17615
  "array"
16955
17616
  ]
16956
17617
  },
16957
- "title": "Create By Team"
17618
+ "title": "Create By Team - Deprecated"
16958
17619
  },
16959
17620
  {
16960
- "description": "Remove a whitelisted entity",
17621
+ "deactivate_on": "2021-02-05",
17622
+ "description": "Remove a whitelisted entity - Deprecated in favor of [`DELETE /teams/{team_name_or_id}/allowed-addon-services/{allowed_add_on_service_id_or_name}`](#allowed-add-on-service-delete-by-team) endpoint.",
16961
17623
  "href": "/teams/{(%23%2Fdefinitions%2Fteam%2Fdefinitions%2Fidentity)}/whitelisted-addon-services/{(%23%2Fdefinitions%2Fwhitelisted-add-on-service%2Fdefinitions%2Fidentity)}",
16962
17624
  "method": "DELETE",
16963
17625
  "rel": "destroy",
16964
17626
  "targetSchema": {
16965
17627
  "$ref": "#/definitions/whitelisted-add-on-service"
16966
17628
  },
16967
- "title": "Delete By Team"
17629
+ "title": "Delete By Team - Deprecated"
16968
17630
  }
16969
17631
  ],
16970
17632
  "properties": {
@@ -17020,6 +17682,9 @@
17020
17682
  "add-on": {
17021
17683
  "$ref": "#/definitions/add-on"
17022
17684
  },
17685
+ "allowed-add-on-service": {
17686
+ "$ref": "#/definitions/allowed-add-on-service"
17687
+ },
17023
17688
  "app-feature": {
17024
17689
  "$ref": "#/definitions/app-feature"
17025
17690
  },
@@ -17047,6 +17712,9 @@
17047
17712
  "archive": {
17048
17713
  "$ref": "#/definitions/archive"
17049
17714
  },
17715
+ "audit-trail-event": {
17716
+ "$ref": "#/definitions/audit-trail-event"
17717
+ },
17050
17718
  "build": {
17051
17719
  "$ref": "#/definitions/build"
17052
17720
  },
@@ -17083,9 +17751,6 @@
17083
17751
  "enterprise-account": {
17084
17752
  "$ref": "#/definitions/enterprise-account"
17085
17753
  },
17086
- "event": {
17087
- "$ref": "#/definitions/event"
17088
- },
17089
17754
  "filter-apps": {
17090
17755
  "$ref": "#/definitions/filter-apps"
17091
17756
  },
@@ -17206,6 +17871,9 @@
17206
17871
  "space-nat": {
17207
17872
  "$ref": "#/definitions/space-nat"
17208
17873
  },
17874
+ "space-topology": {
17875
+ "$ref": "#/definitions/space-topology"
17876
+ },
17209
17877
  "space-transfer": {
17210
17878
  "$ref": "#/definitions/space-transfer"
17211
17879
  },