action combell_get_windows_hosting { label: "Windows hosting detail" provider: combell method: GET path: "/windowshostings/{domainName}" encoding: json input: { type: "object" properties: { domainName: { type: "string" } domain_name: { type: "string" description: "The Windows hosting domain name." } } required: ["domainName", "domain_name"] additionalProperties: false } output: { type: "object" properties: { actual_size: { type: "integer" format: "int32" description: "Used webspace size in MB" } application_pool: { type: "object" description: "The application pool for the hosting account." properties: { installed_net_core_runtimes: { type: "array" description: "The installed .NET Core runtimes for the hosting account." items: { type: "string" } } pipeline_mode: { type: "string" description: "The active pipeline mode for the hosting account." } runtime: { type: "string" description: "The active runtime for the hosting account." } } additionalProperties: false } domain_name: { type: "string" description: "Domain name for the Windows hosting account." } ftp_username: { type: "string" description: "Ftp username" } ip: { type: "string" description: "Windows hosting IP address" } ip_type: { type: "string" description: "Type of the hosting IP address (dedicated or shared)" enum: ["dedicated", "shared"] } max_size: { type: "integer" format: "int32" description: "Maximum webspace size in MB" } mssql_database_names: { type: "array" description: "A list of mssql databases linked to the hosting account.
" items: { type: "string" } } servicepack_id: { type: "integer" format: "int32" description: "Id of Windows hosting service package." } sites: { type: "array" description: "A list of websites on the hosting account." items: { type: "object" properties: { bindings: { type: "array" description: "The bindings for the website." items: { type: "object" description: "A site binding identifies a web domain." properties: { cert_thumbprint: { type: "string" description: "The certificate thumbprint of the site binding." } host_name: { type: "string" description: "The host name of the site binding." } ip_address: { type: "string" description: "The IP address of the site binding." } port: { type: "integer" format: "int32" description: "The port of the site binding." } protocol: { type: "string" description: "The protocol of the site binding." } ssl_enabled: { type: "boolean" description: "Indicates whether ssl is enabled for the binding." } } additionalProperties: false } } name: { type: "string" description: "The name of the website." } path: { type: "string" description: "The path of the website." } } additionalProperties: false } } } additionalProperties: false } }