import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * This resource can manage a Custom Application . * - Minimum SD-WAN Manager version: `20.15.0` * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = new sdwan.CustomApplication("example", { * appName: "Example-Custom", * serverNames: ["*customapp.com"], * l3l4s: [{ * ipAddresses: ["192.168.1.0/24"], * l4Protocol: "TCP", * ports: "1 10-20", * }], * applicationFamily: "routing", * applicationGroup: "ipsec-group", * trafficClass: "signaling", * businessRelevance: "business-relevant", * }); * ``` * * ## Import * * The `pulumi import` command can be used, for example: * * ```sh * $ pulumi import sdwan:index/customApplication:CustomApplication example "f6b2c44c-693c-4763-b010-895aa3d236bd" * ``` */ export declare class CustomApplication extends pulumi.CustomResource { /** * Get an existing CustomApplication resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: CustomApplicationState, opts?: pulumi.CustomResourceOptions): CustomApplication; /** * Returns true if the given object is an instance of CustomApplication. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is CustomApplication; /** * Application Name */ readonly appName: pulumi.Output; /** * Application Family * - Choices: `instant-messaging`, `game`, `mail`, `routing`, `database`, `web`, `behavioral`, `audio-video`, `file-server`, `network-service`, `middleware`, `authentication`, `erp`, `printer`, `tunneling`, `thin-client`, `terminal`, `peer-to-peer`, `forum`, `application-service`, `encrypted`, `microsoft-office`, `security-service`, `network-management`, `file-transfer`, `webmail` */ readonly applicationFamily: pulumi.Output; /** * Application Group * - Choices: `adp-group`, `amazon-group`, `aol-group`, `apple-group`, `apple-talk-group`, `atlassian-group`, `banyan-group`, `bittorrent-group`, `box-group`, `capwap-group`, `cisco-jabber-group`, `cisco-phone-group`, `concur-group`, `corba-group`, `dameware-group`, `demandware-group`, `dropbox-group`, `edonkey-emule-group`, `espn-group`, `fasttrack-group`, `flash-group`, `fring-group`, `ftp-group`, `gnutella-group`, `google-group`, `gotomeeting-group`, `hubspot-group`, `icq-group`, `imap-group`, `intuit-group`, `ipsec-group`, `irc-group`, `jive-group`, `kakao-group`, `kerberos-group`, `ldap-group`, `marketo-group`, `ms-cloud-group`, `msn-messenger-group`, `netbios-group`, `netsuite-group`, `nntp-group`, `npmp-group`, `oracle-group`, `pop3-group`, `prm-group`, `qq-group`, `ringcentral-group`, `salesforce-group`, `sap-group`, `servicenow-group`, `smtp-group`, `snmp-group`, `sqlsvr-group`, `stun-group`, `sugar-crm-group`, `telepresence-group`, `tftp-group`, `tiktok-group`, `vmware-group`, `vnc-group`, `wap-group`, `webex-group`, `workday-group`, `xns-xerox-group`, `xunlei-group`, `yahoo-group`, `yahoo-messenger-group`, `zendesk-group`, `zoho-crm-group`, `other` */ readonly applicationGroup: pulumi.Output; /** * Business Relevance * - Choices: `business-relevant`, `business-irrelevant`, `default` */ readonly businessRelevance: pulumi.Output; /** * L3/L4 Attributes */ readonly l3l4s: pulumi.Output; /** * Server Names (Fully Qualified Domain names or Regex starting with `*` but not ending with `*` or both separated by commas.) */ readonly serverNames: pulumi.Output; /** * Traffic Class * - Choices: `multimedia-conferencing`, `network-control`, `signaling`, `voip-telephony`, `ops-admin-mgmt`, `multimedia-streaming`, `real-time-interactive`, `bulk-data`, `transactional-data`, `broadcast-video` */ readonly trafficClass: pulumi.Output; /** * The version of the object */ readonly version: pulumi.Output; /** * Create a CustomApplication resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: CustomApplicationArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering CustomApplication resources. */ export interface CustomApplicationState { /** * Application Name */ appName?: pulumi.Input; /** * Application Family * - Choices: `instant-messaging`, `game`, `mail`, `routing`, `database`, `web`, `behavioral`, `audio-video`, `file-server`, `network-service`, `middleware`, `authentication`, `erp`, `printer`, `tunneling`, `thin-client`, `terminal`, `peer-to-peer`, `forum`, `application-service`, `encrypted`, `microsoft-office`, `security-service`, `network-management`, `file-transfer`, `webmail` */ applicationFamily?: pulumi.Input; /** * Application Group * - Choices: `adp-group`, `amazon-group`, `aol-group`, `apple-group`, `apple-talk-group`, `atlassian-group`, `banyan-group`, `bittorrent-group`, `box-group`, `capwap-group`, `cisco-jabber-group`, `cisco-phone-group`, `concur-group`, `corba-group`, `dameware-group`, `demandware-group`, `dropbox-group`, `edonkey-emule-group`, `espn-group`, `fasttrack-group`, `flash-group`, `fring-group`, `ftp-group`, `gnutella-group`, `google-group`, `gotomeeting-group`, `hubspot-group`, `icq-group`, `imap-group`, `intuit-group`, `ipsec-group`, `irc-group`, `jive-group`, `kakao-group`, `kerberos-group`, `ldap-group`, `marketo-group`, `ms-cloud-group`, `msn-messenger-group`, `netbios-group`, `netsuite-group`, `nntp-group`, `npmp-group`, `oracle-group`, `pop3-group`, `prm-group`, `qq-group`, `ringcentral-group`, `salesforce-group`, `sap-group`, `servicenow-group`, `smtp-group`, `snmp-group`, `sqlsvr-group`, `stun-group`, `sugar-crm-group`, `telepresence-group`, `tftp-group`, `tiktok-group`, `vmware-group`, `vnc-group`, `wap-group`, `webex-group`, `workday-group`, `xns-xerox-group`, `xunlei-group`, `yahoo-group`, `yahoo-messenger-group`, `zendesk-group`, `zoho-crm-group`, `other` */ applicationGroup?: pulumi.Input; /** * Business Relevance * - Choices: `business-relevant`, `business-irrelevant`, `default` */ businessRelevance?: pulumi.Input; /** * L3/L4 Attributes */ l3l4s?: pulumi.Input[] | undefined>; /** * Server Names (Fully Qualified Domain names or Regex starting with `*` but not ending with `*` or both separated by commas.) */ serverNames?: pulumi.Input[] | undefined>; /** * Traffic Class * - Choices: `multimedia-conferencing`, `network-control`, `signaling`, `voip-telephony`, `ops-admin-mgmt`, `multimedia-streaming`, `real-time-interactive`, `bulk-data`, `transactional-data`, `broadcast-video` */ trafficClass?: pulumi.Input; /** * The version of the object */ version?: pulumi.Input; } /** * The set of arguments for constructing a CustomApplication resource. */ export interface CustomApplicationArgs { /** * Application Name */ appName: pulumi.Input; /** * Application Family * - Choices: `instant-messaging`, `game`, `mail`, `routing`, `database`, `web`, `behavioral`, `audio-video`, `file-server`, `network-service`, `middleware`, `authentication`, `erp`, `printer`, `tunneling`, `thin-client`, `terminal`, `peer-to-peer`, `forum`, `application-service`, `encrypted`, `microsoft-office`, `security-service`, `network-management`, `file-transfer`, `webmail` */ applicationFamily?: pulumi.Input; /** * Application Group * - Choices: `adp-group`, `amazon-group`, `aol-group`, `apple-group`, `apple-talk-group`, `atlassian-group`, `banyan-group`, `bittorrent-group`, `box-group`, `capwap-group`, `cisco-jabber-group`, `cisco-phone-group`, `concur-group`, `corba-group`, `dameware-group`, `demandware-group`, `dropbox-group`, `edonkey-emule-group`, `espn-group`, `fasttrack-group`, `flash-group`, `fring-group`, `ftp-group`, `gnutella-group`, `google-group`, `gotomeeting-group`, `hubspot-group`, `icq-group`, `imap-group`, `intuit-group`, `ipsec-group`, `irc-group`, `jive-group`, `kakao-group`, `kerberos-group`, `ldap-group`, `marketo-group`, `ms-cloud-group`, `msn-messenger-group`, `netbios-group`, `netsuite-group`, `nntp-group`, `npmp-group`, `oracle-group`, `pop3-group`, `prm-group`, `qq-group`, `ringcentral-group`, `salesforce-group`, `sap-group`, `servicenow-group`, `smtp-group`, `snmp-group`, `sqlsvr-group`, `stun-group`, `sugar-crm-group`, `telepresence-group`, `tftp-group`, `tiktok-group`, `vmware-group`, `vnc-group`, `wap-group`, `webex-group`, `workday-group`, `xns-xerox-group`, `xunlei-group`, `yahoo-group`, `yahoo-messenger-group`, `zendesk-group`, `zoho-crm-group`, `other` */ applicationGroup?: pulumi.Input; /** * Business Relevance * - Choices: `business-relevant`, `business-irrelevant`, `default` */ businessRelevance?: pulumi.Input; /** * L3/L4 Attributes */ l3l4s?: pulumi.Input[] | undefined>; /** * Server Names (Fully Qualified Domain names or Regex starting with `*` but not ending with `*` or both separated by commas.) */ serverNames?: pulumi.Input[] | undefined>; /** * Traffic Class * - Choices: `multimedia-conferencing`, `network-control`, `signaling`, `voip-telephony`, `ops-admin-mgmt`, `multimedia-streaming`, `real-time-interactive`, `bulk-data`, `transactional-data`, `broadcast-video` */ trafficClass?: pulumi.Input; } //# sourceMappingURL=customApplication.d.ts.map