waldur-js-client 7.7.6-dev.4 → 7.7.6-dev.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/sdk.gen.d.ts +29 -1
- package/dist/sdk.gen.js +137 -0
- package/dist/types.gen.d.ts +746 -11
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -1952,12 +1952,18 @@ export type CreateFeedbackRequest = {
|
|
|
1952
1952
|
export type CreateRouter = {
|
|
1953
1953
|
readonly url: string;
|
|
1954
1954
|
readonly uuid: string;
|
|
1955
|
+
/**
|
|
1956
|
+
* OpenStack tenant this router belongs to
|
|
1957
|
+
*/
|
|
1955
1958
|
tenant: string;
|
|
1956
1959
|
name: string;
|
|
1957
1960
|
readonly project: string;
|
|
1958
1961
|
readonly service_settings: string;
|
|
1959
1962
|
};
|
|
1960
1963
|
export type CreateRouterRequest = {
|
|
1964
|
+
/**
|
|
1965
|
+
* OpenStack tenant this router belongs to
|
|
1966
|
+
*/
|
|
1961
1967
|
tenant: string;
|
|
1962
1968
|
name: string;
|
|
1963
1969
|
};
|
|
@@ -2799,6 +2805,9 @@ export type ImportableResource = {
|
|
|
2799
2805
|
description: string;
|
|
2800
2806
|
};
|
|
2801
2807
|
export type InstanceFlavorChangeRequest = {
|
|
2808
|
+
/**
|
|
2809
|
+
* The new flavor to use for the instance. Flavor change can only be done when instance is stopped.
|
|
2810
|
+
*/
|
|
2802
2811
|
flavor: string;
|
|
2803
2812
|
};
|
|
2804
2813
|
export type IntegrationStatus = {
|
|
@@ -4469,11 +4478,17 @@ export type NetworkRbacPolicy = {
|
|
|
4469
4478
|
target_tenant?: string;
|
|
4470
4479
|
readonly target_tenant_name?: string;
|
|
4471
4480
|
readonly backend_id?: string;
|
|
4481
|
+
/**
|
|
4482
|
+
* Type of access granted - either shared access or external network access
|
|
4483
|
+
*/
|
|
4472
4484
|
policy_type?: PolicyTypeEnum;
|
|
4473
4485
|
readonly created?: string;
|
|
4474
4486
|
};
|
|
4475
4487
|
export type NetworkRbacPolicyRequest = {
|
|
4476
4488
|
target_tenant: string;
|
|
4489
|
+
/**
|
|
4490
|
+
* Type of access granted - either shared access or external network access
|
|
4491
|
+
*/
|
|
4477
4492
|
policy_type?: PolicyTypeEnum;
|
|
4478
4493
|
};
|
|
4479
4494
|
export type NodeDiskDriverEnum = 'sd' | 'vd';
|
|
@@ -4597,6 +4612,7 @@ export type Offering = {
|
|
|
4597
4612
|
readonly parent_uuid?: string | null;
|
|
4598
4613
|
readonly parent_name?: string | null;
|
|
4599
4614
|
backend_metadata?: unknown;
|
|
4615
|
+
readonly has_compliance_requirements?: boolean;
|
|
4600
4616
|
googlecalendar?: GoogleCalendar;
|
|
4601
4617
|
};
|
|
4602
4618
|
export type OfferingBackendMetadataRequest = {
|
|
@@ -4767,6 +4783,7 @@ export type OfferingCreate = {
|
|
|
4767
4783
|
readonly parent_uuid: string | null;
|
|
4768
4784
|
readonly parent_name: string | null;
|
|
4769
4785
|
backend_metadata?: unknown;
|
|
4786
|
+
readonly has_compliance_requirements: boolean;
|
|
4770
4787
|
};
|
|
4771
4788
|
export type OfferingCreateRequest = {
|
|
4772
4789
|
name: string;
|
|
@@ -5089,8 +5106,14 @@ export type OpenStackBackendInstance = {
|
|
|
5089
5106
|
readonly state: string;
|
|
5090
5107
|
runtime_state?: string;
|
|
5091
5108
|
readonly created: string;
|
|
5109
|
+
/**
|
|
5110
|
+
* Instance ID in the OpenStack backend
|
|
5111
|
+
*/
|
|
5092
5112
|
backend_id?: string | null;
|
|
5093
5113
|
readonly availability_zone: string;
|
|
5114
|
+
/**
|
|
5115
|
+
* Name of the hypervisor hosting this instance
|
|
5116
|
+
*/
|
|
5094
5117
|
hypervisor_hostname?: string;
|
|
5095
5118
|
};
|
|
5096
5119
|
export type OpenStackBackendVolumes = {
|
|
@@ -5100,9 +5123,18 @@ export type OpenStackBackendVolumes = {
|
|
|
5100
5123
|
* Size in MiB
|
|
5101
5124
|
*/
|
|
5102
5125
|
size: number;
|
|
5126
|
+
/**
|
|
5127
|
+
* Arbitrary key-value pairs associated with the volume
|
|
5128
|
+
*/
|
|
5103
5129
|
metadata?: string;
|
|
5130
|
+
/**
|
|
5131
|
+
* Volume ID in the OpenStack backend
|
|
5132
|
+
*/
|
|
5104
5133
|
backend_id?: string | null;
|
|
5105
5134
|
readonly type: string;
|
|
5135
|
+
/**
|
|
5136
|
+
* Indicates if this volume can be used to boot an instance
|
|
5137
|
+
*/
|
|
5106
5138
|
bootable?: boolean;
|
|
5107
5139
|
runtime_state?: string;
|
|
5108
5140
|
readonly state: string;
|
|
@@ -5138,6 +5170,9 @@ export type OpenStackBackup = {
|
|
|
5138
5170
|
*/
|
|
5139
5171
|
kept_until?: string | null;
|
|
5140
5172
|
readonly metadata?: unknown;
|
|
5173
|
+
/**
|
|
5174
|
+
* Instance that this backup is created from
|
|
5175
|
+
*/
|
|
5141
5176
|
readonly instance?: string;
|
|
5142
5177
|
readonly instance_name?: string;
|
|
5143
5178
|
readonly instance_marketplace_uuid?: string;
|
|
@@ -5169,25 +5204,52 @@ export type OpenStackBackupRequest = {
|
|
|
5169
5204
|
};
|
|
5170
5205
|
export type OpenStackBackupRestoration = {
|
|
5171
5206
|
readonly uuid?: string;
|
|
5207
|
+
/**
|
|
5208
|
+
* Instance that is being restored from the backup
|
|
5209
|
+
*/
|
|
5172
5210
|
readonly instance?: string;
|
|
5173
5211
|
readonly created?: string;
|
|
5212
|
+
/**
|
|
5213
|
+
* Flavor to be used for the restored instance. If not specified, original instance flavor will be used
|
|
5214
|
+
*/
|
|
5174
5215
|
flavor?: string;
|
|
5175
5216
|
/**
|
|
5176
5217
|
* New instance name. Leave blank to use source instance name.
|
|
5177
5218
|
*/
|
|
5178
5219
|
name?: string;
|
|
5220
|
+
/**
|
|
5221
|
+
* Floating IPs that will be assigned to the restored instance
|
|
5222
|
+
*/
|
|
5179
5223
|
floating_ips?: Array<OpenStackNestedFloatingIp>;
|
|
5224
|
+
/**
|
|
5225
|
+
* Security groups that will be assigned to the restored instance
|
|
5226
|
+
*/
|
|
5180
5227
|
security_groups?: Array<OpenStackNestedSecurityGroup>;
|
|
5228
|
+
/**
|
|
5229
|
+
* Network ports that will be attached to the restored instance
|
|
5230
|
+
*/
|
|
5181
5231
|
ports?: Array<OpenStackNestedPort>;
|
|
5182
5232
|
};
|
|
5183
5233
|
export type OpenStackBackupRestorationRequest = {
|
|
5234
|
+
/**
|
|
5235
|
+
* Flavor to be used for the restored instance. If not specified, original instance flavor will be used
|
|
5236
|
+
*/
|
|
5184
5237
|
flavor: string;
|
|
5185
5238
|
/**
|
|
5186
5239
|
* New instance name. Leave blank to use source instance name.
|
|
5187
5240
|
*/
|
|
5188
5241
|
name?: string;
|
|
5242
|
+
/**
|
|
5243
|
+
* Floating IPs that will be assigned to the restored instance
|
|
5244
|
+
*/
|
|
5189
5245
|
floating_ips?: Array<OpenStackNestedFloatingIpRequest>;
|
|
5246
|
+
/**
|
|
5247
|
+
* Security groups that will be assigned to the restored instance
|
|
5248
|
+
*/
|
|
5190
5249
|
security_groups?: Array<OpenStackNestedSecurityGroupRequest>;
|
|
5250
|
+
/**
|
|
5251
|
+
* Network ports that will be attached to the restored instance
|
|
5252
|
+
*/
|
|
5191
5253
|
ports?: Array<OpenStackNestedPortRequest>;
|
|
5192
5254
|
};
|
|
5193
5255
|
export type OpenStackDataVolume = {
|
|
@@ -5199,11 +5261,23 @@ export type OpenStackDataVolumeRequest = {
|
|
|
5199
5261
|
volume_type?: string | null;
|
|
5200
5262
|
};
|
|
5201
5263
|
export type OpenStackFixedIp = {
|
|
5264
|
+
/**
|
|
5265
|
+
* IP address to assign to the port
|
|
5266
|
+
*/
|
|
5202
5267
|
ip_address?: string;
|
|
5268
|
+
/**
|
|
5269
|
+
* ID of the subnet in which to assign the IP address
|
|
5270
|
+
*/
|
|
5203
5271
|
subnet_id?: string;
|
|
5204
5272
|
};
|
|
5205
5273
|
export type OpenStackFixedIpRequest = {
|
|
5274
|
+
/**
|
|
5275
|
+
* IP address to assign to the port
|
|
5276
|
+
*/
|
|
5206
5277
|
ip_address: string;
|
|
5278
|
+
/**
|
|
5279
|
+
* ID of the subnet in which to assign the IP address
|
|
5280
|
+
*/
|
|
5207
5281
|
subnet_id: string;
|
|
5208
5282
|
};
|
|
5209
5283
|
export type OpenStackFlavor = {
|
|
@@ -5252,14 +5326,23 @@ export type OpenStackFloatingIp = {
|
|
|
5252
5326
|
readonly backend_id?: string;
|
|
5253
5327
|
readonly access_url?: string | null;
|
|
5254
5328
|
readonly runtime_state?: string;
|
|
5329
|
+
/**
|
|
5330
|
+
* The public IPv4 address of the floating IP
|
|
5331
|
+
*/
|
|
5255
5332
|
readonly address?: string | null;
|
|
5333
|
+
/**
|
|
5334
|
+
* ID of network in OpenStack where this floating IP is allocated
|
|
5335
|
+
*/
|
|
5256
5336
|
readonly backend_network_id?: string;
|
|
5337
|
+
/**
|
|
5338
|
+
* OpenStack tenant this floating IP belongs to
|
|
5339
|
+
*/
|
|
5257
5340
|
readonly tenant?: string;
|
|
5258
5341
|
readonly tenant_name?: string;
|
|
5259
5342
|
readonly tenant_uuid?: string;
|
|
5260
5343
|
readonly port?: string;
|
|
5261
5344
|
/**
|
|
5262
|
-
*
|
|
5345
|
+
* Optional address that maps to floating IP's address in external networks
|
|
5263
5346
|
*/
|
|
5264
5347
|
readonly external_address?: string | null;
|
|
5265
5348
|
readonly port_fixed_ips?: Array<OpenStackFixedIp>;
|
|
@@ -5309,6 +5392,9 @@ export type OpenStackInstance = {
|
|
|
5309
5392
|
name?: string;
|
|
5310
5393
|
description?: string;
|
|
5311
5394
|
readonly service_name?: string;
|
|
5395
|
+
/**
|
|
5396
|
+
* OpenStack provider settings
|
|
5397
|
+
*/
|
|
5312
5398
|
readonly service_settings?: string;
|
|
5313
5399
|
readonly service_settings_uuid?: string;
|
|
5314
5400
|
readonly service_settings_state?: string;
|
|
@@ -5326,6 +5412,9 @@ export type OpenStackInstance = {
|
|
|
5326
5412
|
state?: CoreStates;
|
|
5327
5413
|
readonly created?: string;
|
|
5328
5414
|
readonly modified?: string;
|
|
5415
|
+
/**
|
|
5416
|
+
* Instance ID in the OpenStack backend
|
|
5417
|
+
*/
|
|
5329
5418
|
readonly backend_id?: string | null;
|
|
5330
5419
|
readonly access_url?: string | null;
|
|
5331
5420
|
readonly start_time?: string | null;
|
|
@@ -5364,20 +5453,59 @@ export type OpenStackInstance = {
|
|
|
5364
5453
|
* Flavor disk size in MiB
|
|
5365
5454
|
*/
|
|
5366
5455
|
readonly flavor_disk?: number;
|
|
5456
|
+
/**
|
|
5457
|
+
* Name of the flavor used by this instance
|
|
5458
|
+
*/
|
|
5367
5459
|
readonly flavor_name?: string;
|
|
5460
|
+
/**
|
|
5461
|
+
* List of volumes attached to the instance
|
|
5462
|
+
*/
|
|
5368
5463
|
readonly volumes?: Array<OpenStackNestedVolume>;
|
|
5464
|
+
/**
|
|
5465
|
+
* List of security groups to apply to the instance
|
|
5466
|
+
*/
|
|
5369
5467
|
security_groups?: Array<OpenStackNestedSecurityGroup>;
|
|
5468
|
+
/**
|
|
5469
|
+
* Server group for instance scheduling policy
|
|
5470
|
+
*/
|
|
5370
5471
|
server_group?: OpenStackNestedServerGroup | null;
|
|
5472
|
+
/**
|
|
5473
|
+
* Floating IPs to assign to the instance
|
|
5474
|
+
*/
|
|
5371
5475
|
floating_ips?: Array<OpenStackNestedFloatingIp>;
|
|
5476
|
+
/**
|
|
5477
|
+
* Network ports to attach to the instance
|
|
5478
|
+
*/
|
|
5372
5479
|
ports?: Array<OpenStackNestedPort>;
|
|
5480
|
+
/**
|
|
5481
|
+
* Availability zone where this instance is located
|
|
5482
|
+
*/
|
|
5373
5483
|
availability_zone?: string | null;
|
|
5484
|
+
/**
|
|
5485
|
+
* Name of the availability zone where instance is located
|
|
5486
|
+
*/
|
|
5374
5487
|
readonly availability_zone_name?: string;
|
|
5488
|
+
/**
|
|
5489
|
+
* If True, instance will be connected directly to external network
|
|
5490
|
+
*/
|
|
5375
5491
|
connect_directly_to_external_network?: boolean;
|
|
5376
5492
|
readonly runtime_state?: string;
|
|
5377
5493
|
readonly action?: string;
|
|
5494
|
+
/**
|
|
5495
|
+
* Details about ongoing or completed actions
|
|
5496
|
+
*/
|
|
5378
5497
|
readonly action_details?: unknown;
|
|
5498
|
+
/**
|
|
5499
|
+
* UUID of the OpenStack tenant
|
|
5500
|
+
*/
|
|
5379
5501
|
readonly tenant_uuid?: string;
|
|
5502
|
+
/**
|
|
5503
|
+
* Name of the hypervisor hosting this instance
|
|
5504
|
+
*/
|
|
5380
5505
|
readonly hypervisor_hostname?: string;
|
|
5506
|
+
/**
|
|
5507
|
+
* The OpenStack tenant to create the instance in
|
|
5508
|
+
*/
|
|
5381
5509
|
tenant?: string;
|
|
5382
5510
|
readonly external_address?: Array<string>;
|
|
5383
5511
|
rancher_cluster?: RancherClusterReference | null;
|
|
@@ -5395,7 +5523,13 @@ export type OpenStackInstance = {
|
|
|
5395
5523
|
readonly is_limit_based?: boolean | null;
|
|
5396
5524
|
};
|
|
5397
5525
|
export type OpenStackInstanceAllowedAddressPairsUpdateRequest = {
|
|
5526
|
+
/**
|
|
5527
|
+
* The subnet to update allowed address pairs for.
|
|
5528
|
+
*/
|
|
5398
5529
|
subnet: string;
|
|
5530
|
+
/**
|
|
5531
|
+
* List of allowed address pairs to set on the port. Each pair should contain 'ip_address' and optional 'mac_address'.
|
|
5532
|
+
*/
|
|
5399
5533
|
allowed_address_pairs: Array<OpenStackAllowedAddressPairRequest>;
|
|
5400
5534
|
};
|
|
5401
5535
|
export type OpenStackInstanceAvailabilityZone = {
|
|
@@ -5403,6 +5537,9 @@ export type OpenStackInstanceAvailabilityZone = {
|
|
|
5403
5537
|
readonly uuid: string;
|
|
5404
5538
|
name: string;
|
|
5405
5539
|
settings?: string | null;
|
|
5540
|
+
/**
|
|
5541
|
+
* Indicates whether this availability zone is available for instance provisioning
|
|
5542
|
+
*/
|
|
5406
5543
|
available?: boolean;
|
|
5407
5544
|
};
|
|
5408
5545
|
export type OpenStackInstanceFloatingIpsUpdateRequest = {
|
|
@@ -5414,29 +5551,53 @@ export type OpenStackInstancePortsUpdateRequest = {
|
|
|
5414
5551
|
export type OpenStackInstanceRequest = {
|
|
5415
5552
|
name: string;
|
|
5416
5553
|
description?: string;
|
|
5554
|
+
/**
|
|
5555
|
+
* Volume type for the system volume
|
|
5556
|
+
*/
|
|
5417
5557
|
system_volume_type?: string | null;
|
|
5558
|
+
/**
|
|
5559
|
+
* Volume type for the data volume
|
|
5560
|
+
*/
|
|
5418
5561
|
data_volume_type?: string | null;
|
|
5562
|
+
/**
|
|
5563
|
+
* Additional data volumes to attach to the instance
|
|
5564
|
+
*/
|
|
5419
5565
|
data_volumes?: Array<OpenStackDataVolumeRequest>;
|
|
5420
5566
|
};
|
|
5421
5567
|
export type OpenStackInstanceSecurityGroupsUpdateRequest = {
|
|
5568
|
+
/**
|
|
5569
|
+
* List of security groups to be assigned to the instance.
|
|
5570
|
+
*/
|
|
5422
5571
|
security_groups: Array<string>;
|
|
5423
5572
|
};
|
|
5424
5573
|
export type OpenStackNestedFloatingIp = {
|
|
5425
5574
|
readonly url?: string;
|
|
5426
5575
|
readonly uuid?: string;
|
|
5576
|
+
/**
|
|
5577
|
+
* The public IPv4 address of the floating IP
|
|
5578
|
+
*/
|
|
5427
5579
|
readonly address?: string | null;
|
|
5428
5580
|
readonly port_fixed_ips?: Array<OpenStackFixedIp>;
|
|
5581
|
+
/**
|
|
5582
|
+
* MAC address of the port
|
|
5583
|
+
*/
|
|
5429
5584
|
readonly port_mac_address?: string | null;
|
|
5430
5585
|
subnet?: string;
|
|
5431
5586
|
readonly subnet_uuid?: string;
|
|
5432
5587
|
readonly subnet_name?: string;
|
|
5433
5588
|
readonly subnet_description?: string;
|
|
5589
|
+
/**
|
|
5590
|
+
* IPv4 network address in CIDR format (e.g. 192.168.0.0/24)
|
|
5591
|
+
*/
|
|
5434
5592
|
readonly subnet_cidr?: string;
|
|
5435
5593
|
};
|
|
5436
5594
|
export type OpenStackNestedFloatingIpRequest = {
|
|
5437
5595
|
subnet: string;
|
|
5438
5596
|
};
|
|
5439
5597
|
export type OpenStackNestedInstance = {
|
|
5598
|
+
/**
|
|
5599
|
+
* Instance ID in the OpenStack backend
|
|
5600
|
+
*/
|
|
5440
5601
|
backend_id?: string | null;
|
|
5441
5602
|
name?: string;
|
|
5442
5603
|
readonly uuid?: string;
|
|
@@ -5444,19 +5605,37 @@ export type OpenStackNestedInstance = {
|
|
|
5444
5605
|
export type OpenStackNestedPort = {
|
|
5445
5606
|
readonly url?: string;
|
|
5446
5607
|
fixed_ips?: Array<OpenStackFixedIp>;
|
|
5608
|
+
/**
|
|
5609
|
+
* MAC address of the port
|
|
5610
|
+
*/
|
|
5447
5611
|
readonly mac_address?: string;
|
|
5612
|
+
/**
|
|
5613
|
+
* Subnet to which this port belongs
|
|
5614
|
+
*/
|
|
5448
5615
|
subnet?: string | null;
|
|
5449
5616
|
readonly subnet_uuid?: string | null;
|
|
5450
5617
|
readonly subnet_name?: string | null;
|
|
5451
5618
|
readonly subnet_description?: string | null;
|
|
5619
|
+
/**
|
|
5620
|
+
* IPv4 network address in CIDR format (e.g. 192.168.0.0/24)
|
|
5621
|
+
*/
|
|
5452
5622
|
readonly subnet_cidr?: string | null;
|
|
5453
5623
|
readonly allowed_address_pairs?: Array<OpenStackAllowedAddressPair>;
|
|
5624
|
+
/**
|
|
5625
|
+
* ID of device (instance, router etc) to which this port is connected
|
|
5626
|
+
*/
|
|
5454
5627
|
readonly device_id?: string | null;
|
|
5628
|
+
/**
|
|
5629
|
+
* Entity that uses this port (e.g. network:router_interface)
|
|
5630
|
+
*/
|
|
5455
5631
|
readonly device_owner?: string | null;
|
|
5456
5632
|
readonly security_groups?: Array<OpenStackSecurityGroup>;
|
|
5457
5633
|
};
|
|
5458
5634
|
export type OpenStackNestedPortRequest = {
|
|
5459
5635
|
fixed_ips?: Array<OpenStackFixedIpRequest>;
|
|
5636
|
+
/**
|
|
5637
|
+
* Subnet to which this port belongs
|
|
5638
|
+
*/
|
|
5460
5639
|
subnet?: string | null;
|
|
5461
5640
|
port?: string;
|
|
5462
5641
|
};
|
|
@@ -5469,6 +5648,9 @@ export type OpenStackNestedSecurityGroupRequest = {
|
|
|
5469
5648
|
export type OpenStackNestedServerGroup = {
|
|
5470
5649
|
readonly url?: string;
|
|
5471
5650
|
readonly name?: string;
|
|
5651
|
+
/**
|
|
5652
|
+
* Server group policy determining the rules for scheduling servers in this group
|
|
5653
|
+
*/
|
|
5472
5654
|
policy?: PolicyEnum;
|
|
5473
5655
|
readonly state?: string;
|
|
5474
5656
|
};
|
|
@@ -5476,26 +5658,56 @@ export type OpenStackNestedSubNet = {
|
|
|
5476
5658
|
readonly uuid?: string;
|
|
5477
5659
|
name?: string;
|
|
5478
5660
|
description?: string;
|
|
5661
|
+
/**
|
|
5662
|
+
* IPv4 network address in CIDR format (e.g. 192.168.0.0/24)
|
|
5663
|
+
*/
|
|
5479
5664
|
cidr?: string;
|
|
5665
|
+
/**
|
|
5666
|
+
* IP address of the gateway for this subnet
|
|
5667
|
+
*/
|
|
5480
5668
|
gateway_ip?: string | null;
|
|
5481
5669
|
readonly allocation_pools?: Array<OpenStackSubNetAllocationPool>;
|
|
5670
|
+
/**
|
|
5671
|
+
* IP protocol version (4 or 6)
|
|
5672
|
+
*/
|
|
5482
5673
|
ip_version?: number;
|
|
5674
|
+
/**
|
|
5675
|
+
* If True, DHCP service will be enabled on this subnet
|
|
5676
|
+
*/
|
|
5483
5677
|
enable_dhcp?: boolean;
|
|
5484
5678
|
};
|
|
5485
5679
|
export type OpenStackNestedSubNetRequest = {
|
|
5486
5680
|
name: string;
|
|
5487
5681
|
description?: string;
|
|
5682
|
+
/**
|
|
5683
|
+
* IPv4 network address in CIDR format (e.g. 192.168.0.0/24)
|
|
5684
|
+
*/
|
|
5488
5685
|
cidr?: string;
|
|
5686
|
+
/**
|
|
5687
|
+
* IP address of the gateway for this subnet
|
|
5688
|
+
*/
|
|
5489
5689
|
gateway_ip?: string | null;
|
|
5690
|
+
/**
|
|
5691
|
+
* IP protocol version (4 or 6)
|
|
5692
|
+
*/
|
|
5490
5693
|
ip_version?: number;
|
|
5694
|
+
/**
|
|
5695
|
+
* If True, DHCP service will be enabled on this subnet
|
|
5696
|
+
*/
|
|
5491
5697
|
enable_dhcp?: boolean;
|
|
5492
5698
|
};
|
|
5493
5699
|
export type OpenStackNestedVolume = {
|
|
5494
5700
|
readonly url?: string;
|
|
5495
5701
|
readonly uuid?: string;
|
|
5496
5702
|
readonly name?: string;
|
|
5703
|
+
/**
|
|
5704
|
+
* Name of the image this volume was created from
|
|
5705
|
+
*/
|
|
5497
5706
|
image_name?: string;
|
|
5498
5707
|
readonly state?: string;
|
|
5708
|
+
/**
|
|
5709
|
+
* Indicates if this volume can be used to boot an instance
|
|
5710
|
+
*/
|
|
5499
5711
|
bootable?: boolean;
|
|
5500
5712
|
/**
|
|
5501
5713
|
* Size in MiB
|
|
@@ -5506,12 +5718,21 @@ export type OpenStackNestedVolume = {
|
|
|
5506
5718
|
*/
|
|
5507
5719
|
device?: string;
|
|
5508
5720
|
readonly resource_type?: string;
|
|
5721
|
+
/**
|
|
5722
|
+
* Type of the volume (e.g. SSD, HDD)
|
|
5723
|
+
*/
|
|
5509
5724
|
type?: string | null;
|
|
5510
5725
|
readonly type_name?: string;
|
|
5511
5726
|
readonly marketplace_resource_uuid?: string | null;
|
|
5512
5727
|
};
|
|
5513
5728
|
export type OpenStackNestedVolumeRequest = {
|
|
5729
|
+
/**
|
|
5730
|
+
* Name of the image this volume was created from
|
|
5731
|
+
*/
|
|
5514
5732
|
image_name?: string;
|
|
5733
|
+
/**
|
|
5734
|
+
* Indicates if this volume can be used to boot an instance
|
|
5735
|
+
*/
|
|
5515
5736
|
bootable?: boolean;
|
|
5516
5737
|
/**
|
|
5517
5738
|
* Size in MiB
|
|
@@ -5521,6 +5742,9 @@ export type OpenStackNestedVolumeRequest = {
|
|
|
5521
5742
|
* Name of volume as instance device e.g. /dev/vdb.
|
|
5522
5743
|
*/
|
|
5523
5744
|
device?: string;
|
|
5745
|
+
/**
|
|
5746
|
+
* Type of the volume (e.g. SSD, HDD)
|
|
5747
|
+
*/
|
|
5524
5748
|
type?: string | null;
|
|
5525
5749
|
};
|
|
5526
5750
|
export type OpenStackNetwork = {
|
|
@@ -5548,10 +5772,19 @@ export type OpenStackNetwork = {
|
|
|
5548
5772
|
readonly modified?: string;
|
|
5549
5773
|
readonly backend_id?: string;
|
|
5550
5774
|
readonly access_url?: string | null;
|
|
5775
|
+
/**
|
|
5776
|
+
* OpenStack tenant this network belongs to
|
|
5777
|
+
*/
|
|
5551
5778
|
readonly tenant?: string;
|
|
5552
5779
|
readonly tenant_name?: string;
|
|
5553
5780
|
readonly tenant_uuid?: string;
|
|
5781
|
+
/**
|
|
5782
|
+
* Defines whether this network is external (public) or internal (private)
|
|
5783
|
+
*/
|
|
5554
5784
|
readonly is_external?: boolean;
|
|
5785
|
+
/**
|
|
5786
|
+
* Network type, such as local, flat, vlan, vxlan, or gre
|
|
5787
|
+
*/
|
|
5555
5788
|
readonly type?: string;
|
|
5556
5789
|
readonly subnets?: Array<OpenStackNestedSubNet>;
|
|
5557
5790
|
/**
|
|
@@ -5599,23 +5832,50 @@ export type OpenStackPort = {
|
|
|
5599
5832
|
state?: CoreStates;
|
|
5600
5833
|
readonly created?: string;
|
|
5601
5834
|
readonly modified?: string;
|
|
5835
|
+
/**
|
|
5836
|
+
* Port ID in OpenStack
|
|
5837
|
+
*/
|
|
5602
5838
|
readonly backend_id?: string | null;
|
|
5603
5839
|
readonly access_url?: string | null;
|
|
5604
5840
|
fixed_ips?: Array<OpenStackFixedIp>;
|
|
5841
|
+
/**
|
|
5842
|
+
* MAC address of the port
|
|
5843
|
+
*/
|
|
5605
5844
|
mac_address?: string;
|
|
5606
5845
|
allowed_address_pairs?: Array<OpenStackAllowedAddressPair>;
|
|
5846
|
+
/**
|
|
5847
|
+
* OpenStack tenant this port belongs to
|
|
5848
|
+
*/
|
|
5607
5849
|
readonly tenant?: string;
|
|
5608
5850
|
readonly tenant_name?: string;
|
|
5609
5851
|
readonly tenant_uuid?: string;
|
|
5852
|
+
/**
|
|
5853
|
+
* Network to which this port belongs
|
|
5854
|
+
*/
|
|
5610
5855
|
network?: string | null;
|
|
5611
5856
|
readonly network_name?: string;
|
|
5612
5857
|
readonly network_uuid?: string;
|
|
5613
5858
|
readonly floating_ips?: Array<string>;
|
|
5859
|
+
/**
|
|
5860
|
+
* ID of device (instance, router etc) to which this port is connected
|
|
5861
|
+
*/
|
|
5614
5862
|
readonly device_id?: string | null;
|
|
5863
|
+
/**
|
|
5864
|
+
* Entity that uses this port (e.g. network:router_interface)
|
|
5865
|
+
*/
|
|
5615
5866
|
readonly device_owner?: string | null;
|
|
5867
|
+
/**
|
|
5868
|
+
* If True, security groups and rules will be applied to this port
|
|
5869
|
+
*/
|
|
5616
5870
|
port_security_enabled?: boolean;
|
|
5617
5871
|
security_groups?: Array<OpenStackPortNestedSecurityGroup>;
|
|
5872
|
+
/**
|
|
5873
|
+
* Administrative state of the port. If down, port does not forward packets
|
|
5874
|
+
*/
|
|
5618
5875
|
readonly admin_state_up?: boolean | null;
|
|
5876
|
+
/**
|
|
5877
|
+
* Port status in OpenStack (e.g. ACTIVE, DOWN)
|
|
5878
|
+
*/
|
|
5619
5879
|
readonly status?: string | null;
|
|
5620
5880
|
readonly marketplace_offering_uuid?: string | null;
|
|
5621
5881
|
readonly marketplace_offering_name?: string | null;
|
|
@@ -5631,7 +5891,13 @@ export type OpenStackPort = {
|
|
|
5631
5891
|
readonly is_limit_based?: boolean | null;
|
|
5632
5892
|
};
|
|
5633
5893
|
export type OpenStackPortIpUpdateRequest = {
|
|
5894
|
+
/**
|
|
5895
|
+
* The subnet where the new IP address will be allocated
|
|
5896
|
+
*/
|
|
5634
5897
|
subnet: string;
|
|
5898
|
+
/**
|
|
5899
|
+
* The IP address to assign within the subnet
|
|
5900
|
+
*/
|
|
5635
5901
|
ip_address: string;
|
|
5636
5902
|
};
|
|
5637
5903
|
export type OpenStackPortNestedSecurityGroup = {
|
|
@@ -5646,9 +5912,18 @@ export type OpenStackPortRequest = {
|
|
|
5646
5912
|
name: string;
|
|
5647
5913
|
description?: string;
|
|
5648
5914
|
fixed_ips?: Array<OpenStackFixedIpRequest>;
|
|
5915
|
+
/**
|
|
5916
|
+
* MAC address of the port
|
|
5917
|
+
*/
|
|
5649
5918
|
mac_address?: string;
|
|
5650
5919
|
allowed_address_pairs?: Array<OpenStackAllowedAddressPairRequest>;
|
|
5920
|
+
/**
|
|
5921
|
+
* Network to which this port belongs
|
|
5922
|
+
*/
|
|
5651
5923
|
network?: string | null;
|
|
5924
|
+
/**
|
|
5925
|
+
* If True, security groups and rules will be applied to this port
|
|
5926
|
+
*/
|
|
5652
5927
|
port_security_enabled?: boolean;
|
|
5653
5928
|
security_groups?: Array<OpenStackPortNestedSecurityGroupRequest>;
|
|
5654
5929
|
};
|
|
@@ -5675,8 +5950,14 @@ export type OpenStackRouter = {
|
|
|
5675
5950
|
state?: CoreStates;
|
|
5676
5951
|
readonly created?: string;
|
|
5677
5952
|
readonly modified?: string;
|
|
5953
|
+
/**
|
|
5954
|
+
* Router ID in OpenStack
|
|
5955
|
+
*/
|
|
5678
5956
|
backend_id?: string | null;
|
|
5679
5957
|
readonly access_url?: string | null;
|
|
5958
|
+
/**
|
|
5959
|
+
* OpenStack tenant this router belongs to
|
|
5960
|
+
*/
|
|
5680
5961
|
tenant?: string;
|
|
5681
5962
|
readonly tenant_name?: string;
|
|
5682
5963
|
readonly tenant_uuid?: string;
|
|
@@ -5698,7 +5979,13 @@ export type OpenStackRouter = {
|
|
|
5698
5979
|
readonly offering_external_ips?: Array<string> | null;
|
|
5699
5980
|
};
|
|
5700
5981
|
export type OpenStackRouterInterfaceRequest = {
|
|
5982
|
+
/**
|
|
5983
|
+
* The subnet to connect to the router. Either subnet or port must be specified, but not both.
|
|
5984
|
+
*/
|
|
5701
5985
|
subnet?: string;
|
|
5986
|
+
/**
|
|
5987
|
+
* The port to connect to the router. Either subnet or port must be specified, but not both.
|
|
5988
|
+
*/
|
|
5702
5989
|
port?: string;
|
|
5703
5990
|
};
|
|
5704
5991
|
export type OpenStackRouterSetRoutes = {
|
|
@@ -5755,36 +6042,99 @@ export type OpenStackSecurityGroupRequest = {
|
|
|
5755
6042
|
rules: Array<OpenStackSecurityGroupRuleCreateRequest>;
|
|
5756
6043
|
};
|
|
5757
6044
|
export type OpenStackSecurityGroupRuleCreate = {
|
|
6045
|
+
/**
|
|
6046
|
+
* IP protocol version - either 'IPv4' or 'IPv6'
|
|
6047
|
+
*/
|
|
5758
6048
|
ethertype?: EthertypeEnum;
|
|
6049
|
+
/**
|
|
6050
|
+
* Traffic direction - either 'ingress' (incoming) or 'egress' (outgoing)
|
|
6051
|
+
*/
|
|
5759
6052
|
direction?: DirectionEnum;
|
|
6053
|
+
/**
|
|
6054
|
+
* The network protocol (TCP, UDP, ICMP, or empty for any protocol)
|
|
6055
|
+
*/
|
|
5760
6056
|
protocol?: ProtocolEnum | BlankEnum;
|
|
6057
|
+
/**
|
|
6058
|
+
* Starting port number in the range (1-65535)
|
|
6059
|
+
*/
|
|
5761
6060
|
from_port?: number | null;
|
|
6061
|
+
/**
|
|
6062
|
+
* Ending port number in the range (1-65535)
|
|
6063
|
+
*/
|
|
5762
6064
|
to_port?: number | null;
|
|
6065
|
+
/**
|
|
6066
|
+
* CIDR notation for the source/destination network address range
|
|
6067
|
+
*/
|
|
5763
6068
|
cidr?: string | null;
|
|
5764
6069
|
description?: string;
|
|
5765
6070
|
readonly remote_group_name?: string;
|
|
5766
6071
|
readonly remote_group_uuid?: string;
|
|
5767
6072
|
readonly id?: number;
|
|
6073
|
+
/**
|
|
6074
|
+
* Remote security group that this rule references, if any
|
|
6075
|
+
*/
|
|
5768
6076
|
remote_group?: string | null;
|
|
5769
6077
|
};
|
|
5770
6078
|
export type OpenStackSecurityGroupRuleCreateRequest = {
|
|
6079
|
+
/**
|
|
6080
|
+
* IP protocol version - either 'IPv4' or 'IPv6'
|
|
6081
|
+
*/
|
|
5771
6082
|
ethertype?: EthertypeEnum;
|
|
6083
|
+
/**
|
|
6084
|
+
* Traffic direction - either 'ingress' (incoming) or 'egress' (outgoing)
|
|
6085
|
+
*/
|
|
5772
6086
|
direction?: DirectionEnum;
|
|
6087
|
+
/**
|
|
6088
|
+
* The network protocol (TCP, UDP, ICMP, or empty for any protocol)
|
|
6089
|
+
*/
|
|
5773
6090
|
protocol?: ProtocolEnum | BlankEnum;
|
|
6091
|
+
/**
|
|
6092
|
+
* Starting port number in the range (1-65535)
|
|
6093
|
+
*/
|
|
5774
6094
|
from_port?: number | null;
|
|
6095
|
+
/**
|
|
6096
|
+
* Ending port number in the range (1-65535)
|
|
6097
|
+
*/
|
|
5775
6098
|
to_port?: number | null;
|
|
6099
|
+
/**
|
|
6100
|
+
* CIDR notation for the source/destination network address range
|
|
6101
|
+
*/
|
|
5776
6102
|
cidr?: string | null;
|
|
5777
6103
|
description?: string;
|
|
6104
|
+
/**
|
|
6105
|
+
* Remote security group that this rule references, if any
|
|
6106
|
+
*/
|
|
5778
6107
|
remote_group?: string | null;
|
|
5779
6108
|
};
|
|
5780
6109
|
export type OpenStackSecurityGroupRuleUpdateRequest = {
|
|
6110
|
+
/**
|
|
6111
|
+
* IP protocol version - either 'IPv4' or 'IPv6'
|
|
6112
|
+
*/
|
|
5781
6113
|
ethertype?: EthertypeEnum;
|
|
6114
|
+
/**
|
|
6115
|
+
* Traffic direction - either 'ingress' (incoming) or 'egress' (outgoing)
|
|
6116
|
+
*/
|
|
5782
6117
|
direction?: DirectionEnum;
|
|
6118
|
+
/**
|
|
6119
|
+
* The network protocol (TCP, UDP, ICMP, or empty for any protocol)
|
|
6120
|
+
*/
|
|
5783
6121
|
protocol?: ProtocolEnum | BlankEnum;
|
|
6122
|
+
/**
|
|
6123
|
+
* Starting port number in the range (1-65535)
|
|
6124
|
+
*/
|
|
5784
6125
|
from_port?: number | null;
|
|
6126
|
+
/**
|
|
6127
|
+
* Ending port number in the range (1-65535)
|
|
6128
|
+
*/
|
|
5785
6129
|
to_port?: number | null;
|
|
6130
|
+
/**
|
|
6131
|
+
* CIDR notation for the source/destination network address range
|
|
6132
|
+
*/
|
|
5786
6133
|
cidr?: string | null;
|
|
5787
6134
|
description?: string;
|
|
6135
|
+
/**
|
|
6136
|
+
* Remote security group that this rule references, if any
|
|
6137
|
+
*/
|
|
5788
6138
|
remote_group?: string | null;
|
|
5789
6139
|
};
|
|
5790
6140
|
export type OpenStackSecurityGroupUpdate = {
|
|
@@ -5823,6 +6173,9 @@ export type OpenStackServerGroup = {
|
|
|
5823
6173
|
readonly tenant?: string;
|
|
5824
6174
|
readonly tenant_name?: string;
|
|
5825
6175
|
readonly tenant_uuid?: string;
|
|
6176
|
+
/**
|
|
6177
|
+
* Server group policy determining the rules for scheduling servers in this group
|
|
6178
|
+
*/
|
|
5826
6179
|
policy?: PolicyEnum | BlankEnum;
|
|
5827
6180
|
readonly display_name?: string;
|
|
5828
6181
|
readonly instances?: Array<OpenStackNestedInstance>;
|
|
@@ -5842,6 +6195,9 @@ export type OpenStackServerGroup = {
|
|
|
5842
6195
|
export type OpenStackServerGroupRequest = {
|
|
5843
6196
|
name: string;
|
|
5844
6197
|
description?: string;
|
|
6198
|
+
/**
|
|
6199
|
+
* Server group policy determining the rules for scheduling servers in this group
|
|
6200
|
+
*/
|
|
5845
6201
|
policy?: PolicyEnum | BlankEnum;
|
|
5846
6202
|
};
|
|
5847
6203
|
export type OpenStackSnapshot = {
|
|
@@ -5867,8 +6223,14 @@ export type OpenStackSnapshot = {
|
|
|
5867
6223
|
state?: CoreStates;
|
|
5868
6224
|
readonly created?: string;
|
|
5869
6225
|
readonly modified?: string;
|
|
6226
|
+
/**
|
|
6227
|
+
* Snapshot ID in the OpenStack backend
|
|
6228
|
+
*/
|
|
5870
6229
|
readonly backend_id?: string | null;
|
|
5871
6230
|
readonly access_url?: string | null;
|
|
6231
|
+
/**
|
|
6232
|
+
* Volume from which this snapshot was created
|
|
6233
|
+
*/
|
|
5872
6234
|
readonly source_volume?: string | null;
|
|
5873
6235
|
/**
|
|
5874
6236
|
* Size in MiB
|
|
@@ -5914,6 +6276,9 @@ export type OpenStackSnapshotRestoration = {
|
|
|
5914
6276
|
* New volume description.
|
|
5915
6277
|
*/
|
|
5916
6278
|
description?: string;
|
|
6279
|
+
/**
|
|
6280
|
+
* Volume that is being restored from the snapshot
|
|
6281
|
+
*/
|
|
5917
6282
|
readonly volume?: string;
|
|
5918
6283
|
readonly volume_name?: string;
|
|
5919
6284
|
readonly volume_state?: string;
|
|
@@ -5972,13 +6337,28 @@ export type OpenStackSubNet = {
|
|
|
5972
6337
|
readonly access_url?: string | null;
|
|
5973
6338
|
readonly tenant?: string;
|
|
5974
6339
|
readonly tenant_name?: string;
|
|
6340
|
+
/**
|
|
6341
|
+
* Network to which this subnet belongs
|
|
6342
|
+
*/
|
|
5975
6343
|
readonly network?: string;
|
|
5976
6344
|
readonly network_name?: string;
|
|
5977
6345
|
cidr?: string;
|
|
6346
|
+
/**
|
|
6347
|
+
* IP address of the gateway for this subnet
|
|
6348
|
+
*/
|
|
5978
6349
|
gateway_ip?: string | null;
|
|
6350
|
+
/**
|
|
6351
|
+
* If True, no gateway IP address will be allocated
|
|
6352
|
+
*/
|
|
5979
6353
|
disable_gateway?: boolean;
|
|
5980
6354
|
allocation_pools?: Array<OpenStackSubNetAllocationPool>;
|
|
6355
|
+
/**
|
|
6356
|
+
* IP protocol version (4 or 6)
|
|
6357
|
+
*/
|
|
5981
6358
|
readonly ip_version?: number;
|
|
6359
|
+
/**
|
|
6360
|
+
* If True, DHCP service will be enabled on this subnet
|
|
6361
|
+
*/
|
|
5982
6362
|
readonly enable_dhcp?: boolean;
|
|
5983
6363
|
dns_nameservers?: Array<string>;
|
|
5984
6364
|
host_routes?: Array<OpenStackStaticRoute>;
|
|
@@ -6011,7 +6391,13 @@ export type OpenStackSubNetRequest = {
|
|
|
6011
6391
|
name: string;
|
|
6012
6392
|
description?: string;
|
|
6013
6393
|
cidr?: string;
|
|
6394
|
+
/**
|
|
6395
|
+
* IP address of the gateway for this subnet
|
|
6396
|
+
*/
|
|
6014
6397
|
gateway_ip?: string | null;
|
|
6398
|
+
/**
|
|
6399
|
+
* If True, no gateway IP address will be allocated
|
|
6400
|
+
*/
|
|
6015
6401
|
disable_gateway?: boolean;
|
|
6016
6402
|
allocation_pools?: Array<OpenStackSubNetAllocationPoolRequest>;
|
|
6017
6403
|
dns_nameservers?: Array<string>;
|
|
@@ -6040,12 +6426,21 @@ export type OpenStackTenant = {
|
|
|
6040
6426
|
state?: CoreStates;
|
|
6041
6427
|
readonly created?: string;
|
|
6042
6428
|
readonly modified?: string;
|
|
6429
|
+
/**
|
|
6430
|
+
* ID of tenant in the OpenStack backend
|
|
6431
|
+
*/
|
|
6043
6432
|
readonly backend_id?: string | null;
|
|
6044
6433
|
/**
|
|
6045
6434
|
* Optional availability group. Will be used for all instances provisioned in this tenant
|
|
6046
6435
|
*/
|
|
6047
6436
|
availability_zone?: string;
|
|
6437
|
+
/**
|
|
6438
|
+
* ID of internal network in OpenStack tenant
|
|
6439
|
+
*/
|
|
6048
6440
|
readonly internal_network_id?: string;
|
|
6441
|
+
/**
|
|
6442
|
+
* ID of external network connected to OpenStack tenant
|
|
6443
|
+
*/
|
|
6049
6444
|
readonly external_network_id?: string;
|
|
6050
6445
|
readonly quotas?: Array<Quota>;
|
|
6051
6446
|
/**
|
|
@@ -6129,21 +6524,45 @@ export type OpenStackVolume = {
|
|
|
6129
6524
|
state?: CoreStates;
|
|
6130
6525
|
readonly created?: string;
|
|
6131
6526
|
readonly modified?: string;
|
|
6527
|
+
/**
|
|
6528
|
+
* Volume ID in the OpenStack backend
|
|
6529
|
+
*/
|
|
6132
6530
|
readonly backend_id?: string | null;
|
|
6133
6531
|
readonly access_url?: string | null;
|
|
6532
|
+
/**
|
|
6533
|
+
* Snapshot that this volume was created from, if any
|
|
6534
|
+
*/
|
|
6134
6535
|
readonly source_snapshot?: string | null;
|
|
6135
6536
|
/**
|
|
6136
6537
|
* Size in MiB
|
|
6137
6538
|
*/
|
|
6138
6539
|
size?: number | null;
|
|
6540
|
+
/**
|
|
6541
|
+
* Indicates if this volume can be used to boot an instance
|
|
6542
|
+
*/
|
|
6139
6543
|
bootable?: boolean;
|
|
6140
6544
|
readonly metadata?: unknown;
|
|
6545
|
+
/**
|
|
6546
|
+
* Image that this volume was created from, if any
|
|
6547
|
+
*/
|
|
6141
6548
|
image?: string | null;
|
|
6549
|
+
/**
|
|
6550
|
+
* Metadata of the image this volume was created from
|
|
6551
|
+
*/
|
|
6142
6552
|
readonly image_metadata?: string;
|
|
6553
|
+
/**
|
|
6554
|
+
* Name of the image this volume was created from
|
|
6555
|
+
*/
|
|
6143
6556
|
readonly image_name?: string;
|
|
6557
|
+
/**
|
|
6558
|
+
* Type of the volume (e.g. SSD, HDD)
|
|
6559
|
+
*/
|
|
6144
6560
|
type?: string | null;
|
|
6145
6561
|
readonly type_name?: string;
|
|
6146
6562
|
readonly runtime_state?: string;
|
|
6563
|
+
/**
|
|
6564
|
+
* Availability zone where this volume is located
|
|
6565
|
+
*/
|
|
6147
6566
|
availability_zone?: string | null;
|
|
6148
6567
|
readonly availability_zone_name?: string;
|
|
6149
6568
|
/**
|
|
@@ -6152,6 +6571,9 @@ export type OpenStackVolume = {
|
|
|
6152
6571
|
readonly device?: string;
|
|
6153
6572
|
readonly action?: string;
|
|
6154
6573
|
readonly action_details?: unknown;
|
|
6574
|
+
/**
|
|
6575
|
+
* Instance that this volume is attached to, if any
|
|
6576
|
+
*/
|
|
6155
6577
|
readonly instance?: string | null;
|
|
6156
6578
|
readonly instance_name?: string;
|
|
6157
6579
|
readonly instance_marketplace_uuid?: string;
|
|
@@ -6184,6 +6606,9 @@ export type OpenStackVolumeExtendRequest = {
|
|
|
6184
6606
|
export type OpenStackVolumeRequest = {
|
|
6185
6607
|
name: string;
|
|
6186
6608
|
description?: string;
|
|
6609
|
+
/**
|
|
6610
|
+
* Indicates if this volume can be used to boot an instance
|
|
6611
|
+
*/
|
|
6187
6612
|
bootable?: boolean;
|
|
6188
6613
|
};
|
|
6189
6614
|
export type OpenStackVolumeRetypeRequest = {
|
|
@@ -6860,8 +7285,17 @@ export type PatchedOpenStackBackupRequest = {
|
|
|
6860
7285
|
export type PatchedOpenStackInstanceRequest = {
|
|
6861
7286
|
name?: string;
|
|
6862
7287
|
description?: string;
|
|
7288
|
+
/**
|
|
7289
|
+
* Volume type for the system volume
|
|
7290
|
+
*/
|
|
6863
7291
|
system_volume_type?: string | null;
|
|
7292
|
+
/**
|
|
7293
|
+
* Volume type for the data volume
|
|
7294
|
+
*/
|
|
6864
7295
|
data_volume_type?: string | null;
|
|
7296
|
+
/**
|
|
7297
|
+
* Additional data volumes to attach to the instance
|
|
7298
|
+
*/
|
|
6865
7299
|
data_volumes?: Array<OpenStackDataVolumeRequest>;
|
|
6866
7300
|
};
|
|
6867
7301
|
export type PatchedOpenStackNetworkRequest = {
|
|
@@ -6880,6 +7314,9 @@ export type PatchedOpenStackSecurityGroupUpdateRequest = {
|
|
|
6880
7314
|
export type PatchedOpenStackServerGroupRequest = {
|
|
6881
7315
|
name?: string;
|
|
6882
7316
|
description?: string;
|
|
7317
|
+
/**
|
|
7318
|
+
* Server group policy determining the rules for scheduling servers in this group
|
|
7319
|
+
*/
|
|
6883
7320
|
policy?: PolicyEnum | BlankEnum;
|
|
6884
7321
|
};
|
|
6885
7322
|
export type PatchedOpenStackSnapshotRequest = {
|
|
@@ -6895,7 +7332,13 @@ export type PatchedOpenStackSubNetRequest = {
|
|
|
6895
7332
|
name?: string;
|
|
6896
7333
|
description?: string;
|
|
6897
7334
|
cidr?: string;
|
|
7335
|
+
/**
|
|
7336
|
+
* IP address of the gateway for this subnet
|
|
7337
|
+
*/
|
|
6898
7338
|
gateway_ip?: string | null;
|
|
7339
|
+
/**
|
|
7340
|
+
* If True, no gateway IP address will be allocated
|
|
7341
|
+
*/
|
|
6899
7342
|
disable_gateway?: boolean;
|
|
6900
7343
|
allocation_pools?: Array<OpenStackSubNetAllocationPoolRequest>;
|
|
6901
7344
|
dns_nameservers?: Array<string>;
|
|
@@ -6916,6 +7359,9 @@ export type PatchedOpenStackTenantRequest = {
|
|
|
6916
7359
|
export type PatchedOpenStackVolumeRequest = {
|
|
6917
7360
|
name?: string;
|
|
6918
7361
|
description?: string;
|
|
7362
|
+
/**
|
|
7363
|
+
* Indicates if this volume can be used to boot an instance
|
|
7364
|
+
*/
|
|
6919
7365
|
bootable?: boolean;
|
|
6920
7366
|
};
|
|
6921
7367
|
export type PatchedOrganizationGroupRequest = {
|
|
@@ -7478,7 +7924,13 @@ export type PermissionRequest = {
|
|
|
7478
7924
|
readonly created_by_username: string;
|
|
7479
7925
|
readonly reviewed_by_full_name: string;
|
|
7480
7926
|
readonly reviewed_by_username: string;
|
|
7927
|
+
/**
|
|
7928
|
+
* Timestamp when the review was completed
|
|
7929
|
+
*/
|
|
7481
7930
|
readonly reviewed_at: string | null;
|
|
7931
|
+
/**
|
|
7932
|
+
* Optional comment provided during review
|
|
7933
|
+
*/
|
|
7482
7934
|
review_comment?: string | null;
|
|
7483
7935
|
readonly scope_uuid: string;
|
|
7484
7936
|
readonly scope_name: string;
|
|
@@ -8157,6 +8609,7 @@ export type ProviderOfferingDetails = {
|
|
|
8157
8609
|
readonly parent_uuid?: string | null;
|
|
8158
8610
|
readonly parent_name?: string | null;
|
|
8159
8611
|
backend_metadata?: unknown;
|
|
8612
|
+
readonly has_compliance_requirements?: boolean;
|
|
8160
8613
|
readonly integration_status?: Array<IntegrationStatus> | null;
|
|
8161
8614
|
readonly google_calendar_is_public?: boolean | null;
|
|
8162
8615
|
/**
|
|
@@ -8453,6 +8906,7 @@ export type PublicOfferingDetails = {
|
|
|
8453
8906
|
readonly parent_uuid?: string | null;
|
|
8454
8907
|
readonly parent_name?: string | null;
|
|
8455
8908
|
backend_metadata?: unknown;
|
|
8909
|
+
readonly has_compliance_requirements?: boolean;
|
|
8456
8910
|
readonly google_calendar_is_public?: boolean | null;
|
|
8457
8911
|
/**
|
|
8458
8912
|
* Get the Google Calendar link for an offering.
|
|
@@ -8882,20 +9336,56 @@ export type RancherClusterRequest = {
|
|
|
8882
9336
|
};
|
|
8883
9337
|
export type RancherClusterSecurityGroupRule = {
|
|
8884
9338
|
readonly uuid: string;
|
|
9339
|
+
/**
|
|
9340
|
+
* IP protocol version - either 'IPv4' or 'IPv6'
|
|
9341
|
+
*/
|
|
8885
9342
|
ethertype?: EthertypeEnum;
|
|
9343
|
+
/**
|
|
9344
|
+
* Traffic direction - either 'ingress' (incoming) or 'egress' (outgoing)
|
|
9345
|
+
*/
|
|
8886
9346
|
direction?: DirectionEnum;
|
|
9347
|
+
/**
|
|
9348
|
+
* The network protocol (TCP, UDP, ICMP, or empty for any protocol)
|
|
9349
|
+
*/
|
|
8887
9350
|
protocol?: ProtocolEnum | BlankEnum;
|
|
9351
|
+
/**
|
|
9352
|
+
* Starting port number in the range (1-65535)
|
|
9353
|
+
*/
|
|
8888
9354
|
from_port?: number | null;
|
|
9355
|
+
/**
|
|
9356
|
+
* Ending port number in the range (1-65535)
|
|
9357
|
+
*/
|
|
8889
9358
|
to_port?: number | null;
|
|
9359
|
+
/**
|
|
9360
|
+
* CIDR notation for the source/destination network address range
|
|
9361
|
+
*/
|
|
8890
9362
|
cidr?: string | null;
|
|
8891
9363
|
description?: string;
|
|
8892
9364
|
};
|
|
8893
9365
|
export type RancherClusterSecurityGroupRuleRequest = {
|
|
9366
|
+
/**
|
|
9367
|
+
* IP protocol version - either 'IPv4' or 'IPv6'
|
|
9368
|
+
*/
|
|
8894
9369
|
ethertype?: EthertypeEnum;
|
|
9370
|
+
/**
|
|
9371
|
+
* Traffic direction - either 'ingress' (incoming) or 'egress' (outgoing)
|
|
9372
|
+
*/
|
|
8895
9373
|
direction?: DirectionEnum;
|
|
9374
|
+
/**
|
|
9375
|
+
* The network protocol (TCP, UDP, ICMP, or empty for any protocol)
|
|
9376
|
+
*/
|
|
8896
9377
|
protocol?: ProtocolEnum | BlankEnum;
|
|
9378
|
+
/**
|
|
9379
|
+
* Starting port number in the range (1-65535)
|
|
9380
|
+
*/
|
|
8897
9381
|
from_port?: number | null;
|
|
9382
|
+
/**
|
|
9383
|
+
* Ending port number in the range (1-65535)
|
|
9384
|
+
*/
|
|
8898
9385
|
to_port?: number | null;
|
|
9386
|
+
/**
|
|
9387
|
+
* CIDR notation for the source/destination network address range
|
|
9388
|
+
*/
|
|
8899
9389
|
cidr?: string | null;
|
|
8900
9390
|
description?: string;
|
|
8901
9391
|
};
|
|
@@ -9375,9 +9865,15 @@ export type RemoteProjectUpdateRequest = {
|
|
|
9375
9865
|
readonly offering_name: string;
|
|
9376
9866
|
readonly offering_uuid: string;
|
|
9377
9867
|
readonly created: string;
|
|
9868
|
+
/**
|
|
9869
|
+
* Timestamp when the review was completed
|
|
9870
|
+
*/
|
|
9378
9871
|
readonly reviewed_at: string | null;
|
|
9379
9872
|
readonly reviewed_by_full_name: string;
|
|
9380
9873
|
readonly reviewed_by_uuid: string;
|
|
9874
|
+
/**
|
|
9875
|
+
* Optional comment provided during review
|
|
9876
|
+
*/
|
|
9381
9877
|
review_comment?: string | null;
|
|
9382
9878
|
old_name?: string;
|
|
9383
9879
|
new_name?: string;
|
|
@@ -10208,6 +10704,30 @@ export type ServiceProvider = {
|
|
|
10208
10704
|
export type ServiceProviderApiSecretCode = {
|
|
10209
10705
|
readonly api_secret_code: string;
|
|
10210
10706
|
};
|
|
10707
|
+
export type ServiceProviderComplianceOverview = {
|
|
10708
|
+
readonly offering_uuid: string;
|
|
10709
|
+
readonly offering_name: string;
|
|
10710
|
+
readonly checklist_name: string | null;
|
|
10711
|
+
readonly total_users: number;
|
|
10712
|
+
readonly users_with_completions: number;
|
|
10713
|
+
readonly completed_users: number;
|
|
10714
|
+
readonly pending_users: number;
|
|
10715
|
+
readonly compliance_rate: number;
|
|
10716
|
+
};
|
|
10717
|
+
export type ServiceProviderOfferingUserCompliance = {
|
|
10718
|
+
readonly uuid: string;
|
|
10719
|
+
readonly user_full_name: string;
|
|
10720
|
+
readonly user_email: string;
|
|
10721
|
+
readonly offering_name: string;
|
|
10722
|
+
readonly checklist_name: string | null;
|
|
10723
|
+
readonly username: string | null;
|
|
10724
|
+
state: ServiceProviderOfferingUserComplianceStateEnum;
|
|
10725
|
+
readonly completion_percentage: number | null;
|
|
10726
|
+
readonly compliance_status: string;
|
|
10727
|
+
readonly last_updated: string | null;
|
|
10728
|
+
readonly created: string;
|
|
10729
|
+
};
|
|
10730
|
+
export type ServiceProviderOfferingUserComplianceStateEnum = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10;
|
|
10211
10731
|
export type ServiceProviderRequest = {
|
|
10212
10732
|
description?: string;
|
|
10213
10733
|
customer: string;
|
|
@@ -11015,6 +11535,9 @@ export type VmwareVirtualMachineRequest = {
|
|
|
11015
11535
|
folder?: string | null;
|
|
11016
11536
|
};
|
|
11017
11537
|
export type VolumeAttachRequest = {
|
|
11538
|
+
/**
|
|
11539
|
+
* Instance that this volume is attached to, if any
|
|
11540
|
+
*/
|
|
11018
11541
|
instance: string;
|
|
11019
11542
|
};
|
|
11020
11543
|
export type VolumeTypeEnum = 'gp2' | 'io1' | 'standard';
|
|
@@ -11108,21 +11631,54 @@ export type OpenStackTenantCreateOrderAttributes = {
|
|
|
11108
11631
|
export type OpenStackInstanceCreateOrderAttributes = {
|
|
11109
11632
|
name: string;
|
|
11110
11633
|
description?: string;
|
|
11634
|
+
/**
|
|
11635
|
+
* The flavor to use for the instance
|
|
11636
|
+
*/
|
|
11111
11637
|
flavor: string;
|
|
11638
|
+
/**
|
|
11639
|
+
* The OS image to use for the instance
|
|
11640
|
+
*/
|
|
11112
11641
|
image: string;
|
|
11642
|
+
/**
|
|
11643
|
+
* List of security groups to apply to the instance
|
|
11644
|
+
*/
|
|
11113
11645
|
security_groups?: Array<OpenStackNestedSecurityGroupRequest>;
|
|
11646
|
+
/**
|
|
11647
|
+
* Network ports to attach to the instance
|
|
11648
|
+
*/
|
|
11114
11649
|
ports: Array<OpenStackNestedPortRequest>;
|
|
11650
|
+
/**
|
|
11651
|
+
* Floating IPs to assign to the instance
|
|
11652
|
+
*/
|
|
11115
11653
|
floating_ips?: Array<OpenStackNestedFloatingIpRequest>;
|
|
11654
|
+
/**
|
|
11655
|
+
* Size of the system volume in MiB. Minimum size is 1024 MiB (1 GiB)
|
|
11656
|
+
*/
|
|
11116
11657
|
system_volume_size: number;
|
|
11658
|
+
/**
|
|
11659
|
+
* Volume type for the system volume
|
|
11660
|
+
*/
|
|
11117
11661
|
system_volume_type?: string | null;
|
|
11662
|
+
/**
|
|
11663
|
+
* Size of the data volume in MiB. Minimum size is 1024 MiB (1 GiB)
|
|
11664
|
+
*/
|
|
11118
11665
|
data_volume_size?: number;
|
|
11666
|
+
/**
|
|
11667
|
+
* Volume type for the data volume
|
|
11668
|
+
*/
|
|
11119
11669
|
data_volume_type?: string | null;
|
|
11120
11670
|
ssh_public_key?: string;
|
|
11121
11671
|
/**
|
|
11122
11672
|
* Additional data that will be added to instance on provisioning
|
|
11123
11673
|
*/
|
|
11124
11674
|
user_data?: string;
|
|
11675
|
+
/**
|
|
11676
|
+
* Availability zone where this instance is located
|
|
11677
|
+
*/
|
|
11125
11678
|
availability_zone?: string | null;
|
|
11679
|
+
/**
|
|
11680
|
+
* If True, instance will be connected directly to external network
|
|
11681
|
+
*/
|
|
11126
11682
|
connect_directly_to_external_network?: boolean;
|
|
11127
11683
|
};
|
|
11128
11684
|
/**
|
|
@@ -11132,12 +11688,21 @@ export type OpenStackInstanceCreateOrderAttributes = {
|
|
|
11132
11688
|
export type OpenStackVolumeCreateOrderAttributes = {
|
|
11133
11689
|
name: string;
|
|
11134
11690
|
description?: string;
|
|
11691
|
+
/**
|
|
11692
|
+
* Image that this volume was created from, if any
|
|
11693
|
+
*/
|
|
11135
11694
|
image?: string | null;
|
|
11136
11695
|
/**
|
|
11137
11696
|
* Size in MiB
|
|
11138
11697
|
*/
|
|
11139
11698
|
size?: number | null;
|
|
11699
|
+
/**
|
|
11700
|
+
* Availability zone where this volume is located
|
|
11701
|
+
*/
|
|
11140
11702
|
availability_zone?: string | null;
|
|
11703
|
+
/**
|
|
11704
|
+
* Type of the volume (e.g. SSD, HDD)
|
|
11705
|
+
*/
|
|
11141
11706
|
type?: string | null;
|
|
11142
11707
|
};
|
|
11143
11708
|
/**
|
|
@@ -13696,7 +14261,7 @@ export type BookingOfferingsListData = {
|
|
|
13696
14261
|
body?: never;
|
|
13697
14262
|
path?: never;
|
|
13698
14263
|
query?: {
|
|
13699
|
-
field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'googlecalendar' | 'image' | 'integration_guide' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'shared' | 'slug' | 'state' | 'terms_of_service' | 'terms_of_service_link' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
|
|
14264
|
+
field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'googlecalendar' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'shared' | 'slug' | 'state' | 'terms_of_service' | 'terms_of_service_link' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
|
|
13700
14265
|
/**
|
|
13701
14266
|
* A page number within the paginated result set.
|
|
13702
14267
|
*/
|
|
@@ -13739,7 +14304,7 @@ export type BookingOfferingsRetrieveData = {
|
|
|
13739
14304
|
uuid: string;
|
|
13740
14305
|
};
|
|
13741
14306
|
query?: {
|
|
13742
|
-
field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'googlecalendar' | 'image' | 'integration_guide' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'shared' | 'slug' | 'state' | 'terms_of_service' | 'terms_of_service_link' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
|
|
14307
|
+
field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'googlecalendar' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'shared' | 'slug' | 'state' | 'terms_of_service' | 'terms_of_service_link' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
|
|
13743
14308
|
};
|
|
13744
14309
|
url: '/api/booking-offerings/{uuid}/';
|
|
13745
14310
|
};
|
|
@@ -21504,6 +22069,94 @@ export type MarketplaceOfferingUsersBeginCreatingResponses = {
|
|
|
21504
22069
|
*/
|
|
21505
22070
|
200: unknown;
|
|
21506
22071
|
};
|
|
22072
|
+
export type MarketplaceOfferingUsersChecklistRetrieveData = {
|
|
22073
|
+
body?: never;
|
|
22074
|
+
path: {
|
|
22075
|
+
uuid: string;
|
|
22076
|
+
};
|
|
22077
|
+
query?: never;
|
|
22078
|
+
url: '/api/marketplace-offering-users/{uuid}/checklist/';
|
|
22079
|
+
};
|
|
22080
|
+
export type MarketplaceOfferingUsersChecklistRetrieveErrors = {
|
|
22081
|
+
/**
|
|
22082
|
+
* No checklist configured
|
|
22083
|
+
*/
|
|
22084
|
+
400: unknown;
|
|
22085
|
+
/**
|
|
22086
|
+
* Object not found
|
|
22087
|
+
*/
|
|
22088
|
+
404: unknown;
|
|
22089
|
+
};
|
|
22090
|
+
export type MarketplaceOfferingUsersChecklistRetrieveResponses = {
|
|
22091
|
+
200: ChecklistResponse;
|
|
22092
|
+
};
|
|
22093
|
+
export type MarketplaceOfferingUsersChecklistRetrieveResponse = MarketplaceOfferingUsersChecklistRetrieveResponses[keyof MarketplaceOfferingUsersChecklistRetrieveResponses];
|
|
22094
|
+
export type MarketplaceOfferingUsersChecklistReviewRetrieveData = {
|
|
22095
|
+
body?: never;
|
|
22096
|
+
path: {
|
|
22097
|
+
uuid: string;
|
|
22098
|
+
};
|
|
22099
|
+
query?: never;
|
|
22100
|
+
url: '/api/marketplace-offering-users/{uuid}/checklist_review/';
|
|
22101
|
+
};
|
|
22102
|
+
export type MarketplaceOfferingUsersChecklistReviewRetrieveErrors = {
|
|
22103
|
+
/**
|
|
22104
|
+
* No checklist configured
|
|
22105
|
+
*/
|
|
22106
|
+
400: unknown;
|
|
22107
|
+
/**
|
|
22108
|
+
* Object not found
|
|
22109
|
+
*/
|
|
22110
|
+
404: unknown;
|
|
22111
|
+
};
|
|
22112
|
+
export type MarketplaceOfferingUsersChecklistReviewRetrieveResponses = {
|
|
22113
|
+
200: ChecklistReviewerResponse;
|
|
22114
|
+
};
|
|
22115
|
+
export type MarketplaceOfferingUsersChecklistReviewRetrieveResponse = MarketplaceOfferingUsersChecklistReviewRetrieveResponses[keyof MarketplaceOfferingUsersChecklistReviewRetrieveResponses];
|
|
22116
|
+
export type MarketplaceOfferingUsersCompletionReviewStatusRetrieveData = {
|
|
22117
|
+
body?: never;
|
|
22118
|
+
path: {
|
|
22119
|
+
uuid: string;
|
|
22120
|
+
};
|
|
22121
|
+
query?: never;
|
|
22122
|
+
url: '/api/marketplace-offering-users/{uuid}/completion_review_status/';
|
|
22123
|
+
};
|
|
22124
|
+
export type MarketplaceOfferingUsersCompletionReviewStatusRetrieveErrors = {
|
|
22125
|
+
/**
|
|
22126
|
+
* No checklist configured
|
|
22127
|
+
*/
|
|
22128
|
+
400: unknown;
|
|
22129
|
+
/**
|
|
22130
|
+
* Object not found
|
|
22131
|
+
*/
|
|
22132
|
+
404: unknown;
|
|
22133
|
+
};
|
|
22134
|
+
export type MarketplaceOfferingUsersCompletionReviewStatusRetrieveResponses = {
|
|
22135
|
+
200: ChecklistCompletionReviewer;
|
|
22136
|
+
};
|
|
22137
|
+
export type MarketplaceOfferingUsersCompletionReviewStatusRetrieveResponse = MarketplaceOfferingUsersCompletionReviewStatusRetrieveResponses[keyof MarketplaceOfferingUsersCompletionReviewStatusRetrieveResponses];
|
|
22138
|
+
export type MarketplaceOfferingUsersCompletionStatusRetrieveData = {
|
|
22139
|
+
body?: never;
|
|
22140
|
+
path: {
|
|
22141
|
+
uuid: string;
|
|
22142
|
+
};
|
|
22143
|
+
query?: never;
|
|
22144
|
+
url: '/api/marketplace-offering-users/{uuid}/completion_status/';
|
|
22145
|
+
};
|
|
22146
|
+
export type MarketplaceOfferingUsersCompletionStatusRetrieveErrors = {
|
|
22147
|
+
/**
|
|
22148
|
+
* No checklist configured
|
|
22149
|
+
*/
|
|
22150
|
+
400: unknown;
|
|
22151
|
+
/**
|
|
22152
|
+
* Object not found
|
|
22153
|
+
*/
|
|
22154
|
+
404: unknown;
|
|
22155
|
+
};
|
|
22156
|
+
export type MarketplaceOfferingUsersCompletionStatusRetrieveResponses = {
|
|
22157
|
+
200: ChecklistCompletion;
|
|
22158
|
+
};
|
|
22159
|
+
export type MarketplaceOfferingUsersCompletionStatusRetrieveResponse = MarketplaceOfferingUsersCompletionStatusRetrieveResponses[keyof MarketplaceOfferingUsersCompletionStatusRetrieveResponses];
|
|
21507
22160
|
export type MarketplaceOfferingUsersRequestDeletionData = {
|
|
21508
22161
|
body?: never;
|
|
21509
22162
|
path: {
|
|
@@ -21630,6 +22283,28 @@ export type MarketplaceOfferingUsersSetValidationCompleteResponses = {
|
|
|
21630
22283
|
*/
|
|
21631
22284
|
200: unknown;
|
|
21632
22285
|
};
|
|
22286
|
+
export type MarketplaceOfferingUsersSubmitAnswersData = {
|
|
22287
|
+
body: Array<AnswerSubmitRequest>;
|
|
22288
|
+
path: {
|
|
22289
|
+
uuid: string;
|
|
22290
|
+
};
|
|
22291
|
+
query?: never;
|
|
22292
|
+
url: '/api/marketplace-offering-users/{uuid}/submit_answers/';
|
|
22293
|
+
};
|
|
22294
|
+
export type MarketplaceOfferingUsersSubmitAnswersErrors = {
|
|
22295
|
+
/**
|
|
22296
|
+
* Validation error or no checklist configured
|
|
22297
|
+
*/
|
|
22298
|
+
400: unknown;
|
|
22299
|
+
/**
|
|
22300
|
+
* Object not found
|
|
22301
|
+
*/
|
|
22302
|
+
404: unknown;
|
|
22303
|
+
};
|
|
22304
|
+
export type MarketplaceOfferingUsersSubmitAnswersResponses = {
|
|
22305
|
+
200: AnswerSubmitResponse;
|
|
22306
|
+
};
|
|
22307
|
+
export type MarketplaceOfferingUsersSubmitAnswersResponse = MarketplaceOfferingUsersSubmitAnswersResponses[keyof MarketplaceOfferingUsersSubmitAnswersResponses];
|
|
21633
22308
|
export type MarketplaceOfferingUsersUpdateCommentsPartialUpdateData = {
|
|
21634
22309
|
body?: PatchedOfferingUserServiceProviderCommentRequest;
|
|
21635
22310
|
path: {
|
|
@@ -22628,7 +23303,7 @@ export type MarketplaceProviderOfferingsListData = {
|
|
|
22628
23303
|
customer?: string;
|
|
22629
23304
|
customer_uuid?: string;
|
|
22630
23305
|
description?: string;
|
|
22631
|
-
field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'image' | 'integration_guide' | 'integration_status' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'state' | 'terms_of_service' | 'terms_of_service_link' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
|
|
23306
|
+
field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'integration_status' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'state' | 'terms_of_service' | 'terms_of_service_link' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
|
|
22632
23307
|
/**
|
|
22633
23308
|
* Keyword
|
|
22634
23309
|
*/
|
|
@@ -22805,7 +23480,7 @@ export type MarketplaceProviderOfferingsRetrieveData = {
|
|
|
22805
23480
|
uuid: string;
|
|
22806
23481
|
};
|
|
22807
23482
|
query?: {
|
|
22808
|
-
field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'image' | 'integration_guide' | 'integration_status' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'state' | 'terms_of_service' | 'terms_of_service_link' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
|
|
23483
|
+
field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'integration_status' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'state' | 'terms_of_service' | 'terms_of_service_link' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
|
|
22809
23484
|
};
|
|
22810
23485
|
url: '/api/marketplace-provider-offerings/{uuid}/';
|
|
22811
23486
|
};
|
|
@@ -23303,7 +23978,7 @@ export type MarketplaceProviderOfferingsListCustomerServiceAccountsRetrieveData
|
|
|
23303
23978
|
uuid: string;
|
|
23304
23979
|
};
|
|
23305
23980
|
query?: {
|
|
23306
|
-
field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'image' | 'integration_guide' | 'integration_status' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'state' | 'terms_of_service' | 'terms_of_service_link' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
|
|
23981
|
+
field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'integration_status' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'state' | 'terms_of_service' | 'terms_of_service_link' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
|
|
23307
23982
|
};
|
|
23308
23983
|
url: '/api/marketplace-provider-offerings/{uuid}/list_customer_service_accounts/';
|
|
23309
23984
|
};
|
|
@@ -23338,7 +24013,7 @@ export type MarketplaceProviderOfferingsListProjectServiceAccountsRetrieveData =
|
|
|
23338
24013
|
uuid: string;
|
|
23339
24014
|
};
|
|
23340
24015
|
query?: {
|
|
23341
|
-
field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'image' | 'integration_guide' | 'integration_status' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'state' | 'terms_of_service' | 'terms_of_service_link' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
|
|
24016
|
+
field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'integration_status' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'state' | 'terms_of_service' | 'terms_of_service_link' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
|
|
23342
24017
|
};
|
|
23343
24018
|
url: '/api/marketplace-provider-offerings/{uuid}/list_project_service_accounts/';
|
|
23344
24019
|
};
|
|
@@ -23511,7 +24186,7 @@ export type MarketplaceProviderOfferingsStatsRetrieveData = {
|
|
|
23511
24186
|
uuid: string;
|
|
23512
24187
|
};
|
|
23513
24188
|
query?: {
|
|
23514
|
-
field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'image' | 'integration_guide' | 'integration_status' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'state' | 'terms_of_service' | 'terms_of_service_link' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
|
|
24189
|
+
field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'integration_status' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'state' | 'terms_of_service' | 'terms_of_service_link' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
|
|
23515
24190
|
};
|
|
23516
24191
|
url: '/api/marketplace-provider-offerings/{uuid}/stats/';
|
|
23517
24192
|
};
|
|
@@ -23717,7 +24392,7 @@ export type MarketplaceProviderOfferingsUserHasResourceAccessRetrieveData = {
|
|
|
23717
24392
|
uuid: string;
|
|
23718
24393
|
};
|
|
23719
24394
|
query: {
|
|
23720
|
-
field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'image' | 'integration_guide' | 'integration_status' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'state' | 'terms_of_service' | 'terms_of_service_link' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
|
|
24395
|
+
field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'integration_status' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'state' | 'terms_of_service' | 'terms_of_service_link' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
|
|
23721
24396
|
/**
|
|
23722
24397
|
* Username of the user to check.
|
|
23723
24398
|
*/
|
|
@@ -24401,7 +25076,7 @@ export type MarketplacePublicOfferingsListData = {
|
|
|
24401
25076
|
customer?: string;
|
|
24402
25077
|
customer_uuid?: string;
|
|
24403
25078
|
description?: string;
|
|
24404
|
-
field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'image' | 'integration_guide' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'promotion_campaigns' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'shared' | 'slug' | 'state' | 'terms_of_service' | 'terms_of_service_link' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
|
|
25079
|
+
field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'promotion_campaigns' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'shared' | 'slug' | 'state' | 'terms_of_service' | 'terms_of_service_link' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
|
|
24405
25080
|
/**
|
|
24406
25081
|
* Keyword
|
|
24407
25082
|
*/
|
|
@@ -24553,7 +25228,7 @@ export type MarketplacePublicOfferingsRetrieveData = {
|
|
|
24553
25228
|
uuid: string;
|
|
24554
25229
|
};
|
|
24555
25230
|
query?: {
|
|
24556
|
-
field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'image' | 'integration_guide' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'promotion_campaigns' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'shared' | 'slug' | 'state' | 'terms_of_service' | 'terms_of_service_link' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
|
|
25231
|
+
field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'promotion_campaigns' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'shared' | 'slug' | 'state' | 'terms_of_service' | 'terms_of_service_link' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
|
|
24557
25232
|
};
|
|
24558
25233
|
url: '/api/marketplace-public-offerings/{uuid}/';
|
|
24559
25234
|
};
|
|
@@ -25849,6 +26524,56 @@ export type MarketplaceServiceProvidersCreateResponses = {
|
|
|
25849
26524
|
201: ServiceProvider;
|
|
25850
26525
|
};
|
|
25851
26526
|
export type MarketplaceServiceProvidersCreateResponse = MarketplaceServiceProvidersCreateResponses[keyof MarketplaceServiceProvidersCreateResponses];
|
|
26527
|
+
export type ServiceProviderComplianceOverviewData = {
|
|
26528
|
+
body?: never;
|
|
26529
|
+
path: {
|
|
26530
|
+
service_provider_uuid: string;
|
|
26531
|
+
};
|
|
26532
|
+
query?: {
|
|
26533
|
+
/**
|
|
26534
|
+
* A page number within the paginated result set.
|
|
26535
|
+
*/
|
|
26536
|
+
page?: number;
|
|
26537
|
+
/**
|
|
26538
|
+
* Number of results to return per page.
|
|
26539
|
+
*/
|
|
26540
|
+
page_size?: number;
|
|
26541
|
+
};
|
|
26542
|
+
url: '/api/marketplace-service-providers/{service_provider_uuid}/compliance/compliance_overview/';
|
|
26543
|
+
};
|
|
26544
|
+
export type ServiceProviderComplianceOverviewResponses = {
|
|
26545
|
+
200: Array<ServiceProviderComplianceOverview>;
|
|
26546
|
+
};
|
|
26547
|
+
export type ServiceProviderComplianceOverviewResponse = ServiceProviderComplianceOverviewResponses[keyof ServiceProviderComplianceOverviewResponses];
|
|
26548
|
+
export type ServiceProviderOfferingUsersComplianceData = {
|
|
26549
|
+
body?: never;
|
|
26550
|
+
path: {
|
|
26551
|
+
service_provider_uuid: string;
|
|
26552
|
+
};
|
|
26553
|
+
query?: {
|
|
26554
|
+
/**
|
|
26555
|
+
* Filter by compliance status: completed, pending, no_checklist
|
|
26556
|
+
*/
|
|
26557
|
+
compliance_status?: string;
|
|
26558
|
+
/**
|
|
26559
|
+
* Filter by offering UUID
|
|
26560
|
+
*/
|
|
26561
|
+
offering_uuid?: string;
|
|
26562
|
+
/**
|
|
26563
|
+
* A page number within the paginated result set.
|
|
26564
|
+
*/
|
|
26565
|
+
page?: number;
|
|
26566
|
+
/**
|
|
26567
|
+
* Number of results to return per page.
|
|
26568
|
+
*/
|
|
26569
|
+
page_size?: number;
|
|
26570
|
+
};
|
|
26571
|
+
url: '/api/marketplace-service-providers/{service_provider_uuid}/compliance/offering_users/';
|
|
26572
|
+
};
|
|
26573
|
+
export type ServiceProviderOfferingUsersComplianceResponses = {
|
|
26574
|
+
200: Array<ServiceProviderOfferingUserCompliance>;
|
|
26575
|
+
};
|
|
26576
|
+
export type ServiceProviderOfferingUsersComplianceResponse = ServiceProviderOfferingUsersComplianceResponses[keyof ServiceProviderOfferingUsersComplianceResponses];
|
|
25852
26577
|
export type MarketplaceServiceProvidersCustomerProjectsListData = {
|
|
25853
26578
|
body?: never;
|
|
25854
26579
|
path: {
|
|
@@ -28978,6 +29703,11 @@ export type OpenstackNetworkRbacPoliciesListData = {
|
|
|
28978
29703
|
* Number of results to return per page.
|
|
28979
29704
|
*/
|
|
28980
29705
|
page_size?: number;
|
|
29706
|
+
/**
|
|
29707
|
+
* Type of access granted - either shared access or external network access
|
|
29708
|
+
*
|
|
29709
|
+
*
|
|
29710
|
+
*/
|
|
28981
29711
|
policy_type?: 'access_as_external' | 'access_as_shared';
|
|
28982
29712
|
target_tenant?: string;
|
|
28983
29713
|
target_tenant_uuid?: string;
|
|
@@ -29002,6 +29732,11 @@ export type OpenstackNetworkRbacPoliciesCountData = {
|
|
|
29002
29732
|
* Number of results to return per page.
|
|
29003
29733
|
*/
|
|
29004
29734
|
page_size?: number;
|
|
29735
|
+
/**
|
|
29736
|
+
* Type of access granted - either shared access or external network access
|
|
29737
|
+
*
|
|
29738
|
+
*
|
|
29739
|
+
*/
|
|
29005
29740
|
policy_type?: 'access_as_external' | 'access_as_shared';
|
|
29006
29741
|
target_tenant?: string;
|
|
29007
29742
|
target_tenant_uuid?: string;
|