File tree Expand file tree Collapse file tree 2 files changed +149
-6
lines changed Expand file tree Collapse file tree 2 files changed +149
-6
lines changed Original file line number Diff line number Diff line change @@ -173,8 +173,37 @@ export interface Account {
173
173
* Identity Provider details for federated users.
174
174
*/
175
175
identity_provider ?: {
176
+ /**
177
+ * unique identifier of this identity provider
178
+ */
179
+ id ?: string
180
+ organization ?: {
181
+ /**
182
+ * unique name of organization
183
+ */
184
+ name ?: string
185
+ [ k : string ] : any
186
+ }
187
+ /**
188
+ * entity that owns this identity provider
189
+ */
190
+ owner ?: {
191
+ /**
192
+ * unique identifier of the owner
193
+ */
194
+ id : string
195
+ /**
196
+ * name of the owner
197
+ */
198
+ name ?: string
199
+ /**
200
+ * type of the owner
201
+ */
202
+ type : 'team' | 'enterprise-account'
203
+ [ k : string ] : any
204
+ }
176
205
[ k : string ] : any
177
- } | null
206
+ }
178
207
/**
179
208
* when account last authorized with Heroku
180
209
*/
@@ -1588,6 +1617,24 @@ export interface IdentityProvider {
1588
1617
* when the identity provider record was updated
1589
1618
*/
1590
1619
updated_at ?: string
1620
+ /**
1621
+ * entity that owns this identity provider
1622
+ */
1623
+ owner ?: {
1624
+ /**
1625
+ * unique identifier of the owner
1626
+ */
1627
+ id : string
1628
+ /**
1629
+ * name of the owner
1630
+ */
1631
+ name ?: string
1632
+ /**
1633
+ * type of the owner
1634
+ */
1635
+ type : 'team' | 'enterprise-account'
1636
+ [ k : string ] : any
1637
+ }
1591
1638
[ k : string ] : any
1592
1639
}
1593
1640
/**
@@ -2597,6 +2644,10 @@ export interface PeeringInfo {
2597
2644
* The CIDR ranges that you must not conflict with.
2598
2645
*/
2599
2646
unavailable_cidr_blocks ?: string [ ]
2647
+ /**
2648
+ * The CIDR ranges that should be routed to the Private Space VPC.
2649
+ */
2650
+ space_cidr_blocks ?: string [ ]
2600
2651
[ k : string ] : any
2601
2652
}
2602
2653
/**
Original file line number Diff line number Diff line change 489
489
"$ref" : " #/definitions/organization/definitions/name"
490
490
}
491
491
}
492
+ },
493
+ "owner" : {
494
+ "description" : " entity that owns this identity provider" ,
495
+ "properties" : {
496
+ "id" : {
497
+ "description" : " unique identifier of the owner" ,
498
+ "example" : " 01234567-89ab-cdef-0123-456789abcdef" ,
499
+ "format" : " uuid" ,
500
+ "readOnly" : true ,
501
+ "type" : [
502
+ " string"
503
+ ]
504
+ },
505
+ "name" : {
506
+ "description" : " name of the owner" ,
507
+ "example" : " acme" ,
508
+ "readOnly" : true ,
509
+ "type" : [
510
+ " string"
511
+ ]
512
+ },
513
+ "type" : {
514
+ "description" : " type of the owner" ,
515
+ "enum" : [
516
+ " team" ,
517
+ " enterprise-account"
518
+ ],
519
+ "example" : " team" ,
520
+ "readOnly" : true ,
521
+ "type" : [
522
+ " string"
523
+ ]
524
+ }
525
+ },
526
+ "readOnly" : false ,
527
+ "required" : [
528
+ " id" ,
529
+ " type"
530
+ ],
531
+ "type" : [
532
+ " object"
533
+ ]
492
534
}
493
- },
494
- "type" : [
495
- " object" ,
496
- " null"
497
- ]
535
+ }
498
536
},
499
537
"last_login" : {
500
538
"$ref" : " #/definitions/account/definitions/last_login"
5823
5861
"type" : [
5824
5862
" string"
5825
5863
]
5864
+ },
5865
+ "owner" : {
5866
+ "description" : " entity that owns this identity provider" ,
5867
+ "properties" : {
5868
+ "id" : {
5869
+ "description" : " unique identifier of the owner" ,
5870
+ "example" : " 01234567-89ab-cdef-0123-456789abcdef" ,
5871
+ "format" : " uuid" ,
5872
+ "readOnly" : true ,
5873
+ "type" : [
5874
+ " string"
5875
+ ]
5876
+ },
5877
+ "name" : {
5878
+ "description" : " name of the owner" ,
5879
+ "example" : " acme" ,
5880
+ "readOnly" : true ,
5881
+ "type" : [
5882
+ " string"
5883
+ ]
5884
+ },
5885
+ "type" : {
5886
+ "description" : " type of the owner" ,
5887
+ "enum" : [
5888
+ " team" ,
5889
+ " enterprise-account"
5890
+ ],
5891
+ "example" : " team" ,
5892
+ "readOnly" : true ,
5893
+ "type" : [
5894
+ " string"
5895
+ ]
5896
+ }
5897
+ },
5898
+ "readOnly" : false ,
5899
+ "required" : [
5900
+ " id" ,
5901
+ " type"
5902
+ ],
5903
+ "type" : [
5904
+ " object"
5905
+ ]
5826
5906
}
5827
5907
},
5828
5908
"links" : [
6036
6116
},
6037
6117
"updated_at" : {
6038
6118
"$ref" : " #/definitions/identity-provider/definitions/updated_at"
6119
+ },
6120
+ "owner" : {
6121
+ "$ref" : " #/definitions/identity-provider/definitions/owner"
6039
6122
}
6040
6123
}
6041
6124
},
9870
9953
"items" : {
9871
9954
"$ref" : " #/definitions/peering/definitions/cidr"
9872
9955
}
9956
+ },
9957
+ "space_cidr_blocks" : {
9958
+ "description" : " The CIDR ranges that should be routed to the Private Space VPC." ,
9959
+ "type" : [
9960
+ " array"
9961
+ ],
9962
+ "items" : {
9963
+ "$ref" : " #/definitions/peering/definitions/cidr"
9964
+ }
9873
9965
}
9874
9966
},
9875
9967
"links" : [
You can’t perform that action at this time.
0 commit comments