1. Packages
  2. Scaleway
  3. API Docs
  4. hosting
  5. getOffer
Scaleway v1.25.0 published on Saturday, Mar 22, 2025 by pulumiverse

scaleway.hosting.getOffer

Explore with Pulumi AI

scaleway logo
Scaleway v1.25.0 published on Saturday, Mar 22, 2025 by pulumiverse

    Gets information about a webhosting offer.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as scaleway from "@pulumi/scaleway";
    
    // Get info by offer name
    const byName = scaleway.hosting.getOffer({
        name: "performance",
        controlPanel: "Cpanel",
    });
    // Get info by offer id
    const byId = scaleway.hosting.getOffer({
        offerId: "de2426b4-a9e9-11ec-b909-0242ac120002",
    });
    
    import pulumi
    import pulumi_scaleway as scaleway
    
    # Get info by offer name
    by_name = scaleway.hosting.get_offer(name="performance",
        control_panel="Cpanel")
    # Get info by offer id
    by_id = scaleway.hosting.get_offer(offer_id="de2426b4-a9e9-11ec-b909-0242ac120002")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway/hosting"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		// Get info by offer name
    		_, err := hosting.GetOffer(ctx, &hosting.GetOfferArgs{
    			Name:         pulumi.StringRef("performance"),
    			ControlPanel: pulumi.StringRef("Cpanel"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		// Get info by offer id
    		_, err = hosting.GetOffer(ctx, &hosting.GetOfferArgs{
    			OfferId: pulumi.StringRef("de2426b4-a9e9-11ec-b909-0242ac120002"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scaleway = Pulumi.Scaleway;
    
    return await Deployment.RunAsync(() => 
    {
        // Get info by offer name
        var byName = Scaleway.Hosting.GetOffer.Invoke(new()
        {
            Name = "performance",
            ControlPanel = "Cpanel",
        });
    
        // Get info by offer id
        var byId = Scaleway.Hosting.GetOffer.Invoke(new()
        {
            OfferId = "de2426b4-a9e9-11ec-b909-0242ac120002",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scaleway.hosting.HostingFunctions;
    import com.pulumi.scaleway.hosting.inputs.GetOfferArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            // Get info by offer name
            final var byName = HostingFunctions.getOffer(GetOfferArgs.builder()
                .name("performance")
                .controlPanel("Cpanel")
                .build());
    
            // Get info by offer id
            final var byId = HostingFunctions.getOffer(GetOfferArgs.builder()
                .offerId("de2426b4-a9e9-11ec-b909-0242ac120002")
                .build());
    
        }
    }
    
    variables:
      # Get info by offer name
      byName:
        fn::invoke:
          function: scaleway:hosting:getOffer
          arguments:
            name: performance
            controlPanel: Cpanel
      # Get info by offer id
      byId:
        fn::invoke:
          function: scaleway:hosting:getOffer
          arguments:
            offerId: de2426b4-a9e9-11ec-b909-0242ac120002
    

    Using getOffer

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getOffer(args: GetOfferArgs, opts?: InvokeOptions): Promise<GetOfferResult>
    function getOfferOutput(args: GetOfferOutputArgs, opts?: InvokeOptions): Output<GetOfferResult>
    def get_offer(control_panel: Optional[str] = None,
                  name: Optional[str] = None,
                  offer_id: Optional[str] = None,
                  region: Optional[str] = None,
                  opts: Optional[InvokeOptions] = None) -> GetOfferResult
    def get_offer_output(control_panel: Optional[pulumi.Input[str]] = None,
                  name: Optional[pulumi.Input[str]] = None,
                  offer_id: Optional[pulumi.Input[str]] = None,
                  region: Optional[pulumi.Input[str]] = None,
                  opts: Optional[InvokeOptions] = None) -> Output[GetOfferResult]
    func GetOffer(ctx *Context, args *GetOfferArgs, opts ...InvokeOption) (*GetOfferResult, error)
    func GetOfferOutput(ctx *Context, args *GetOfferOutputArgs, opts ...InvokeOption) GetOfferResultOutput

    > Note: This function is named GetOffer in the Go SDK.

    public static class GetOffer 
    {
        public static Task<GetOfferResult> InvokeAsync(GetOfferArgs args, InvokeOptions? opts = null)
        public static Output<GetOfferResult> Invoke(GetOfferInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetOfferResult> getOffer(GetOfferArgs args, InvokeOptions options)
    public static Output<GetOfferResult> getOffer(GetOfferArgs args, InvokeOptions options)
    
    fn::invoke:
      function: scaleway:hosting/getOffer:getOffer
      arguments:
        # arguments dictionary

    The following arguments are supported:

    ControlPanel string
    Name of the control panel (Cpanel or Plesk). This argument is only used when offer_id is not specified.
    Name string
    The offer name. Only one of name and offer_id should be specified.
    OfferId string
    The offer id. Only one of name and offer_id should be specified.
    Region string
    region) The region in which offer exists.
    ControlPanel string
    Name of the control panel (Cpanel or Plesk). This argument is only used when offer_id is not specified.
    Name string
    The offer name. Only one of name and offer_id should be specified.
    OfferId string
    The offer id. Only one of name and offer_id should be specified.
    Region string
    region) The region in which offer exists.
    controlPanel String
    Name of the control panel (Cpanel or Plesk). This argument is only used when offer_id is not specified.
    name String
    The offer name. Only one of name and offer_id should be specified.
    offerId String
    The offer id. Only one of name and offer_id should be specified.
    region String
    region) The region in which offer exists.
    controlPanel string
    Name of the control panel (Cpanel or Plesk). This argument is only used when offer_id is not specified.
    name string
    The offer name. Only one of name and offer_id should be specified.
    offerId string
    The offer id. Only one of name and offer_id should be specified.
    region string
    region) The region in which offer exists.
    control_panel str
    Name of the control panel (Cpanel or Plesk). This argument is only used when offer_id is not specified.
    name str
    The offer name. Only one of name and offer_id should be specified.
    offer_id str
    The offer id. Only one of name and offer_id should be specified.
    region str
    region) The region in which offer exists.
    controlPanel String
    Name of the control panel (Cpanel or Plesk). This argument is only used when offer_id is not specified.
    name String
    The offer name. Only one of name and offer_id should be specified.
    offerId String
    The offer id. Only one of name and offer_id should be specified.
    region String
    region) The region in which offer exists.

    getOffer Result

    The following output properties are available:

    BillingOperationPath string
    The billing operation identifier for the option.
    Id string
    The provider-assigned unique ID for this managed resource.
    Offers List<Pulumiverse.Scaleway.Hosting.Outputs.GetOfferOffer>
    The detailed offer of the hosting.
    Price string
    The offer price.
    Products List<Pulumiverse.Scaleway.Hosting.Outputs.GetOfferProduct>
    (deprecated) The offer product.

    Deprecated: The product field is deprecated. Please use the offer field instead.

    Region string
    ControlPanel string
    Name string
    The name of the option.
    OfferId string
    BillingOperationPath string
    The billing operation identifier for the option.
    Id string
    The provider-assigned unique ID for this managed resource.
    Offers []GetOfferOffer
    The detailed offer of the hosting.
    Price string
    The offer price.
    Products []GetOfferProduct
    (deprecated) The offer product.

    Deprecated: The product field is deprecated. Please use the offer field instead.

    Region string
    ControlPanel string
    Name string
    The name of the option.
    OfferId string
    billingOperationPath String
    The billing operation identifier for the option.
    id String
    The provider-assigned unique ID for this managed resource.
    offers List<GetOfferOffer>
    The detailed offer of the hosting.
    price String
    The offer price.
    products List<GetOfferProduct>
    (deprecated) The offer product.

    Deprecated: The product field is deprecated. Please use the offer field instead.

    region String
    controlPanel String
    name String
    The name of the option.
    offerId String
    billingOperationPath string
    The billing operation identifier for the option.
    id string
    The provider-assigned unique ID for this managed resource.
    offers GetOfferOffer[]
    The detailed offer of the hosting.
    price string
    The offer price.
    products GetOfferProduct[]
    (deprecated) The offer product.

    Deprecated: The product field is deprecated. Please use the offer field instead.

    region string
    controlPanel string
    name string
    The name of the option.
    offerId string
    billing_operation_path str
    The billing operation identifier for the option.
    id str
    The provider-assigned unique ID for this managed resource.
    offers Sequence[GetOfferOffer]
    The detailed offer of the hosting.
    price str
    The offer price.
    products Sequence[GetOfferProduct]
    (deprecated) The offer product.

    Deprecated: The product field is deprecated. Please use the offer field instead.

    region str
    control_panel str
    name str
    The name of the option.
    offer_id str
    billingOperationPath String
    The billing operation identifier for the option.
    id String
    The provider-assigned unique ID for this managed resource.
    offers List<Property Map>
    The detailed offer of the hosting.
    price String
    The offer price.
    products List<Property Map>
    (deprecated) The offer product.

    Deprecated: The product field is deprecated. Please use the offer field instead.

    region String
    controlPanel String
    name String
    The name of the option.
    offerId String

    Supporting Types

    GetOfferOffer

    Available bool
    Indicates if the offer is available.
    BillingOperationPath string
    The billing operation identifier for the option.
    ControlPanelName string
    The name of the control panel (e.g., Cpanel or Plesk).
    EndOfLife bool
    Indicates if the offer is deprecated or no longer supported.
    Id string
    The unique identifier of the option.
    Name string
    The offer name. Only one of name and offer_id should be specified.
    Options List<Pulumiverse.Scaleway.Hosting.Inputs.GetOfferOfferOption>
    A list of available options for the offer:
    Price string
    The offer price.
    QuotaWarning string
    Warning information regarding quota limitations for the option.
    Available bool
    Indicates if the offer is available.
    BillingOperationPath string
    The billing operation identifier for the option.
    ControlPanelName string
    The name of the control panel (e.g., Cpanel or Plesk).
    EndOfLife bool
    Indicates if the offer is deprecated or no longer supported.
    Id string
    The unique identifier of the option.
    Name string
    The offer name. Only one of name and offer_id should be specified.
    Options []GetOfferOfferOption
    A list of available options for the offer:
    Price string
    The offer price.
    QuotaWarning string
    Warning information regarding quota limitations for the option.
    available Boolean
    Indicates if the offer is available.
    billingOperationPath String
    The billing operation identifier for the option.
    controlPanelName String
    The name of the control panel (e.g., Cpanel or Plesk).
    endOfLife Boolean
    Indicates if the offer is deprecated or no longer supported.
    id String
    The unique identifier of the option.
    name String
    The offer name. Only one of name and offer_id should be specified.
    options List<GetOfferOfferOption>
    A list of available options for the offer:
    price String
    The offer price.
    quotaWarning String
    Warning information regarding quota limitations for the option.
    available boolean
    Indicates if the offer is available.
    billingOperationPath string
    The billing operation identifier for the option.
    controlPanelName string
    The name of the control panel (e.g., Cpanel or Plesk).
    endOfLife boolean
    Indicates if the offer is deprecated or no longer supported.
    id string
    The unique identifier of the option.
    name string
    The offer name. Only one of name and offer_id should be specified.
    options GetOfferOfferOption[]
    A list of available options for the offer:
    price string
    The offer price.
    quotaWarning string
    Warning information regarding quota limitations for the option.
    available bool
    Indicates if the offer is available.
    billing_operation_path str
    The billing operation identifier for the option.
    control_panel_name str
    The name of the control panel (e.g., Cpanel or Plesk).
    end_of_life bool
    Indicates if the offer is deprecated or no longer supported.
    id str
    The unique identifier of the option.
    name str
    The offer name. Only one of name and offer_id should be specified.
    options Sequence[GetOfferOfferOption]
    A list of available options for the offer:
    price str
    The offer price.
    quota_warning str
    Warning information regarding quota limitations for the option.
    available Boolean
    Indicates if the offer is available.
    billingOperationPath String
    The billing operation identifier for the option.
    controlPanelName String
    The name of the control panel (e.g., Cpanel or Plesk).
    endOfLife Boolean
    Indicates if the offer is deprecated or no longer supported.
    id String
    The unique identifier of the option.
    name String
    The offer name. Only one of name and offer_id should be specified.
    options List<Property Map>
    A list of available options for the offer:
    price String
    The offer price.
    quotaWarning String
    Warning information regarding quota limitations for the option.

    GetOfferOfferOption

    BillingOperationPath string
    The billing operation identifier for the option.
    CurrentValue int
    The current value set for the option.
    Id string
    The unique identifier of the option.
    MaxValue int
    The maximum allowed value for the option.
    MinValue int
    The minimum value for the option.
    Name string
    The offer name. Only one of name and offer_id should be specified.
    Price string
    The offer price.
    QuotaWarning string
    Warning information regarding quota limitations for the option.
    BillingOperationPath string
    The billing operation identifier for the option.
    CurrentValue int
    The current value set for the option.
    Id string
    The unique identifier of the option.
    MaxValue int
    The maximum allowed value for the option.
    MinValue int
    The minimum value for the option.
    Name string
    The offer name. Only one of name and offer_id should be specified.
    Price string
    The offer price.
    QuotaWarning string
    Warning information regarding quota limitations for the option.
    billingOperationPath String
    The billing operation identifier for the option.
    currentValue Integer
    The current value set for the option.
    id String
    The unique identifier of the option.
    maxValue Integer
    The maximum allowed value for the option.
    minValue Integer
    The minimum value for the option.
    name String
    The offer name. Only one of name and offer_id should be specified.
    price String
    The offer price.
    quotaWarning String
    Warning information regarding quota limitations for the option.
    billingOperationPath string
    The billing operation identifier for the option.
    currentValue number
    The current value set for the option.
    id string
    The unique identifier of the option.
    maxValue number
    The maximum allowed value for the option.
    minValue number
    The minimum value for the option.
    name string
    The offer name. Only one of name and offer_id should be specified.
    price string
    The offer price.
    quotaWarning string
    Warning information regarding quota limitations for the option.
    billing_operation_path str
    The billing operation identifier for the option.
    current_value int
    The current value set for the option.
    id str
    The unique identifier of the option.
    max_value int
    The maximum allowed value for the option.
    min_value int
    The minimum value for the option.
    name str
    The offer name. Only one of name and offer_id should be specified.
    price str
    The offer price.
    quota_warning str
    Warning information regarding quota limitations for the option.
    billingOperationPath String
    The billing operation identifier for the option.
    currentValue Number
    The current value set for the option.
    id String
    The unique identifier of the option.
    maxValue Number
    The maximum allowed value for the option.
    minValue Number
    The minimum value for the option.
    name String
    The offer name. Only one of name and offer_id should be specified.
    price String
    The offer price.
    quotaWarning String
    Warning information regarding quota limitations for the option.

    GetOfferProduct

    DatabasesQuota int
    The quota of databases.
    EmailAccountsQuota int
    The quota of email accounts.
    EmailStorageQuota int
    The quota of email storage.
    HostingStorageQuota int
    The quota of hosting storage.
    Name string
    The offer name. Only one of name and offer_id should be specified.
    Option bool
    The product option.
    Ram int
    The capacity of the memory in GB.
    SupportIncluded bool
    If support is included.
    VCpu int
    The number of cores.
    DatabasesQuota int
    The quota of databases.
    EmailAccountsQuota int
    The quota of email accounts.
    EmailStorageQuota int
    The quota of email storage.
    HostingStorageQuota int
    The quota of hosting storage.
    Name string
    The offer name. Only one of name and offer_id should be specified.
    Option bool
    The product option.
    Ram int
    The capacity of the memory in GB.
    SupportIncluded bool
    If support is included.
    VCpu int
    The number of cores.
    databasesQuota Integer
    The quota of databases.
    emailAccountsQuota Integer
    The quota of email accounts.
    emailStorageQuota Integer
    The quota of email storage.
    hostingStorageQuota Integer
    The quota of hosting storage.
    name String
    The offer name. Only one of name and offer_id should be specified.
    option Boolean
    The product option.
    ram Integer
    The capacity of the memory in GB.
    supportIncluded Boolean
    If support is included.
    vCpu Integer
    The number of cores.
    databasesQuota number
    The quota of databases.
    emailAccountsQuota number
    The quota of email accounts.
    emailStorageQuota number
    The quota of email storage.
    hostingStorageQuota number
    The quota of hosting storage.
    name string
    The offer name. Only one of name and offer_id should be specified.
    option boolean
    The product option.
    ram number
    The capacity of the memory in GB.
    supportIncluded boolean
    If support is included.
    vCpu number
    The number of cores.
    databases_quota int
    The quota of databases.
    email_accounts_quota int
    The quota of email accounts.
    email_storage_quota int
    The quota of email storage.
    hosting_storage_quota int
    The quota of hosting storage.
    name str
    The offer name. Only one of name and offer_id should be specified.
    option bool
    The product option.
    ram int
    The capacity of the memory in GB.
    support_included bool
    If support is included.
    v_cpu int
    The number of cores.
    databasesQuota Number
    The quota of databases.
    emailAccountsQuota Number
    The quota of email accounts.
    emailStorageQuota Number
    The quota of email storage.
    hostingStorageQuota Number
    The quota of hosting storage.
    name String
    The offer name. Only one of name and offer_id should be specified.
    option Boolean
    The product option.
    ram Number
    The capacity of the memory in GB.
    supportIncluded Boolean
    If support is included.
    vCpu Number
    The number of cores.

    Package Details

    Repository
    scaleway pulumiverse/pulumi-scaleway
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the scaleway Terraform Provider.
    scaleway logo
    Scaleway v1.25.0 published on Saturday, Mar 22, 2025 by pulumiverse