waldur-js-client 8.0.6-dev.7 → 8.0.6-dev.8

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.
Files changed (2) hide show
  1. package/dist/types.gen.d.ts +146 -1
  2. package/package.json +1 -1
@@ -13767,7 +13767,7 @@ export type OrderCreateRequest = {
13767
13767
  /**
13768
13768
  * Attributes structure depends on the offering type specified in the parent object. Can also be a generic object for offerings without a specific attributes schema.
13769
13769
  */
13770
- attributes?: GenericOrderAttributes;
13770
+ attributes?: AzureVirtualMachineCreateOrderAttributes | AzureSqlServerCreateOrderAttributes | MarketplaceOpenPortalCreateOrderAttributes | MarketplaceOpenPortalRemoteCreateOrderAttributes | OpenStackTenantCreateOrderAttributes | OpenStackInstanceCreateOrderAttributes | OpenStackVolumeCreateOrderAttributes | SlurmInvoicesSlurmPackageCreateOrderAttributes | VMwareVirtualMachineCreateOrderAttributes | GenericOrderAttributes;
13771
13771
  limits?: {
13772
13772
  [key: string]: number;
13773
13773
  };
@@ -23983,6 +23983,151 @@ export type WebHookRequest = {
23983
23983
  };
23984
23984
  export type WidgetEnum = 'csv' | 'filesize' | 'attached_instance';
23985
23985
  export type ZammadarticletypeEnum = 'email' | 'phone' | 'web' | 'note' | 'sms' | 'chat' | 'fax' | 'twitter status' | 'twitter direct-message' | 'facebook feed post' | 'facebook feed comment' | 'telegram personal-message';
23986
+ export type AzureVirtualMachineCreateOrderAttributes = {
23987
+ name: string;
23988
+ description?: string;
23989
+ size: string;
23990
+ image: string;
23991
+ location: string;
23992
+ };
23993
+ export type AzureSqlServerCreateOrderAttributes = {
23994
+ name: string;
23995
+ description?: string;
23996
+ location: string;
23997
+ };
23998
+ export type MarketplaceOpenPortalCreateOrderAttributes = {
23999
+ name: string;
24000
+ description?: string;
24001
+ };
24002
+ export type MarketplaceOpenPortalRemoteCreateOrderAttributes = {
24003
+ name: string;
24004
+ description?: string;
24005
+ };
24006
+ export type OpenStackTenantCreateOrderAttributes = {
24007
+ name: string;
24008
+ description?: string;
24009
+ subnet_cidr?: string;
24010
+ skip_connection_extnet?: boolean;
24011
+ skip_creation_of_default_router?: boolean;
24012
+ skip_creation_of_default_subnet?: boolean;
24013
+ /**
24014
+ * Optional availability group. Will be used for all instances provisioned in this tenant
24015
+ */
24016
+ availability_zone?: string;
24017
+ security_groups?: Array<OpenStackTenantSecurityGroupRequest>;
24018
+ };
24019
+ export type OpenStackCreateInstancePortRequest = {
24020
+ fixed_ips?: Array<OpenStackFixedIpRequest>;
24021
+ /**
24022
+ * Subnet to which this port belongs
24023
+ */
24024
+ subnet?: string | null;
24025
+ port?: string;
24026
+ };
24027
+ export type OpenStackDataVolumeRequest = {
24028
+ size: number;
24029
+ volume_type?: string | null;
24030
+ };
24031
+ export type OpenStackServerGroupHyperlinkRequest = {
24032
+ url: string;
24033
+ };
24034
+ export type OpenStackInstanceCreateOrderAttributes = {
24035
+ name: string;
24036
+ description?: string;
24037
+ /**
24038
+ * The flavor to use for the instance
24039
+ */
24040
+ flavor: string;
24041
+ /**
24042
+ * The OS image to use for the instance
24043
+ */
24044
+ image: string;
24045
+ /**
24046
+ * List of security groups to apply to the instance
24047
+ */
24048
+ security_groups?: Array<OpenStackSecurityGroupHyperlinkRequest>;
24049
+ /**
24050
+ * Server group for instance scheduling policy
24051
+ */
24052
+ server_group?: OpenStackServerGroupHyperlinkRequest;
24053
+ /**
24054
+ * Network ports to attach to the instance
24055
+ */
24056
+ ports: Array<OpenStackCreateInstancePortRequest>;
24057
+ /**
24058
+ * Floating IPs to assign to the instance
24059
+ */
24060
+ floating_ips?: Array<OpenStackCreateFloatingIpRequest>;
24061
+ /**
24062
+ * Size of the system volume in MiB. Minimum size is 1024 MiB (1 GiB)
24063
+ */
24064
+ system_volume_size: number;
24065
+ /**
24066
+ * Volume type for the system volume
24067
+ */
24068
+ system_volume_type?: string | null;
24069
+ /**
24070
+ * Size of the data volume in MiB. Minimum size is 1024 MiB (1 GiB)
24071
+ */
24072
+ data_volume_size?: number;
24073
+ /**
24074
+ * Volume type for the data volume
24075
+ */
24076
+ data_volume_type?: string | null;
24077
+ ssh_public_key?: string;
24078
+ /**
24079
+ * Additional data that will be added to instance on provisioning
24080
+ */
24081
+ user_data?: string;
24082
+ /**
24083
+ * Availability zone where this instance is located
24084
+ */
24085
+ availability_zone?: string | null;
24086
+ /**
24087
+ * If True, instance will be connected directly to external network
24088
+ */
24089
+ connect_directly_to_external_network?: boolean;
24090
+ /**
24091
+ * Additional data volumes to attach to the instance
24092
+ */
24093
+ data_volumes?: Array<OpenStackDataVolumeRequest>;
24094
+ };
24095
+ export type OpenStackVolumeCreateOrderAttributes = {
24096
+ name: string;
24097
+ description?: string;
24098
+ /**
24099
+ * Image that this volume was created from, if any
24100
+ */
24101
+ image?: string | null;
24102
+ /**
24103
+ * Size in MiB
24104
+ */
24105
+ size?: number | null;
24106
+ /**
24107
+ * Availability zone where this volume is located
24108
+ */
24109
+ availability_zone?: string | null;
24110
+ /**
24111
+ * Type of the volume (e.g. SSD, HDD)
24112
+ */
24113
+ type?: string | null;
24114
+ };
24115
+ export type SlurmInvoicesSlurmPackageCreateOrderAttributes = {
24116
+ name: string;
24117
+ description?: string;
24118
+ };
24119
+ export type VMwareVirtualMachineCreateOrderAttributes = {
24120
+ name: string;
24121
+ description?: string;
24122
+ guest_os?: 'DOS' | 'WIN_31' | 'WIN_95' | 'WIN_98' | 'WIN_ME' | 'WIN_NT' | 'WIN_2000_PRO' | 'WIN_2000_SERV' | 'WIN_2000_ADV_SERV' | 'WIN_XP_HOME' | 'WIN_XP_PRO' | 'WIN_XP_PRO_64' | 'WIN_NET_WEB' | 'WIN_NET_STANDARD' | 'WIN_NET_ENTERPRISE' | 'WIN_NET_DATACENTER' | 'WIN_NET_BUSINESS' | 'WIN_NET_STANDARD_64' | 'WIN_NET_ENTERPRISE_64' | 'WIN_LONGHORN' | 'WIN_LONGHORN_64' | 'WIN_NET_DATACENTER_64' | 'WIN_VISTA' | 'WIN_VISTA_64' | 'WINDOWS_7' | 'WINDOWS_7_64' | 'WINDOWS_7_SERVER_64' | 'WINDOWS_8' | 'WINDOWS_8_64' | 'WINDOWS_8_SERVER_64' | 'WINDOWS_9' | 'WINDOWS_9_64' | 'WINDOWS_9_SERVER_64' | 'WINDOWS_HYPERV' | 'FREEBSD' | 'FREEBSD_64' | 'REDHAT' | 'RHEL_2' | 'RHEL_3' | 'RHEL_3_64' | 'RHEL_4' | 'RHEL_4_64' | 'RHEL_5' | 'RHEL_5_64' | 'RHEL_6' | 'RHEL_6_64' | 'RHEL_7' | 'RHEL_7_64' | 'CENTOS' | 'CENTOS_64' | 'CENTOS_6' | 'CENTOS_6_64' | 'CENTOS_7' | 'CENTOS_7_64' | 'ORACLE_LINUX' | 'ORACLE_LINUX_64' | 'ORACLE_LINUX_6' | 'ORACLE_LINUX_6_64' | 'ORACLE_LINUX_7' | 'ORACLE_LINUX_7_64' | 'SUSE' | 'SUSE_64' | 'SLES' | 'SLES_64' | 'SLES_10' | 'SLES_10_64' | 'SLES_11' | 'SLES_11_64' | 'SLES_12' | 'SLES_12_64' | 'NLD_9' | 'OES' | 'SJDS' | 'MANDRAKE' | 'MANDRIVA' | 'MANDRIVA_64' | 'TURBO_LINUX' | 'TURBO_LINUX_64' | 'UBUNTU' | 'UBUNTU_64' | 'DEBIAN_4' | 'DEBIAN_4_64' | 'DEBIAN_5' | 'DEBIAN_5_64' | 'DEBIAN_6' | 'DEBIAN_6_64' | 'DEBIAN_7' | 'DEBIAN_7_64' | 'DEBIAN_8' | 'DEBIAN_8_64' | 'DEBIAN_9' | 'DEBIAN_9_64' | 'DEBIAN_10' | 'DEBIAN_10_64' | 'ASIANUX_3' | 'ASIANUX_3_64' | 'ASIANUX_4' | 'ASIANUX_4_64' | 'ASIANUX_5_64' | 'ASIANUX_7_64' | 'OPENSUSE' | 'OPENSUSE_64' | 'FEDORA' | 'FEDORA_64' | 'COREOS_64' | 'VMWARE_PHOTON_64' | 'OTHER_24X_LINUX' | 'OTHER_24X_LINUX_64' | 'OTHER_26X_LINUX' | 'OTHER_26X_LINUX_64' | 'OTHER_3X_LINUX' | 'OTHER_3X_LINUX_64' | 'OTHER_LINUX' | 'GENERIC_LINUX' | 'OTHER_LINUX_64' | 'SOLARIS_6' | 'SOLARIS_7' | 'SOLARIS_8' | 'SOLARIS_9' | 'SOLARIS_10' | 'SOLARIS_10_64' | 'SOLARIS_11_64' | 'OS2' | 'ECOMSTATION' | 'ECOMSTATION_2' | 'NETWARE_4' | 'NETWARE_5' | 'NETWARE_6' | 'OPENSERVER_5' | 'OPENSERVER_6' | 'UNIXWARE_7' | 'DARWIN' | 'DARWIN_64' | 'DARWIN_10' | 'DARWIN_10_64' | 'DARWIN_11' | 'DARWIN_11_64' | 'DARWIN_12_64' | 'DARWIN_13_64' | 'DARWIN_14_64' | 'DARWIN_15_64' | 'DARWIN_16_64' | 'VMKERNEL' | 'VMKERNEL_5' | 'VMKERNEL_6' | 'VMKERNEL_65' | 'OTHER' | 'OTHER_64' | null;
24123
+ /**
24124
+ * Number of cores per socket in a VM
24125
+ */
24126
+ cores_per_socket?: number;
24127
+ template?: string | null;
24128
+ cluster?: string | null;
24129
+ datastore?: string | null;
24130
+ };
23986
24131
  export type GenericOrderAttributes = {
23987
24132
  /**
23988
24133
  * The name of the resource to be created. Will be displayed in the portal.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "8.0.6-dev.7",
3
+ "version": "8.0.6-dev.8",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",