scaleway.getCockpit
Explore with Pulumi AI
Important: The data source
scaleway.Cockpit
has been deprecated and will no longer be supported. Instead, use resourcescaleway.Cockpit
.
Note: As of April 2024, Cockpit has introduced regionalization to offer more flexibility and resilience. If you have created customized dashboards with data for your Scaleway resources before April 2024, you will need to update your queries in Grafana, with the new regionalized data sources.
The scaleway.Cockpit
data source is used to retrieve information about a Scaleway Cockpit associated with a given Project. This can be the default Project or a specific Project identified by its ID.
Refer to Cockpit’s product documentation and API documentation for more information.
Retrieve a Cockpit
The following commands allow you to:
- get information on the Cockpit associated with your Scaleway default Project
- get information on the Cockpit associated with a specific Scaleway Project
import * as pulumi from "@pulumi/pulumi";
import * as scaleway from "@pulumi/scaleway";
// Get the default Project's Cockpit
const main = scaleway.getCockpit({});
import pulumi
import pulumi_scaleway as scaleway
# Get the default Project's Cockpit
main = scaleway.get_cockpit()
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
// Get the default Project's Cockpit
_, err := scaleway.LookupCockpit(ctx, &scaleway.LookupCockpitArgs{}, 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 the default Project's Cockpit
var main = Scaleway.GetCockpit.Invoke();
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.scaleway.ScalewayFunctions;
import com.pulumi.scaleway.inputs.GetCockpitArgs;
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 the default Project's Cockpit
final var main = ScalewayFunctions.getCockpit();
}
}
variables:
# Get the default Project's Cockpit
main:
fn::invoke:
Function: scaleway:getCockpit
Arguments: {}
import * as pulumi from "@pulumi/pulumi";
import * as scaleway from "@pulumi/scaleway";
// Get a specific Project's Cockpit
const main = scaleway.getCockpit({
projectId: "11111111-1111-1111-1111-111111111111",
});
import pulumi
import pulumi_scaleway as scaleway
# Get a specific Project's Cockpit
main = scaleway.get_cockpit(project_id="11111111-1111-1111-1111-111111111111")
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
// Get a specific Project's Cockpit
_, err := scaleway.LookupCockpit(ctx, &scaleway.LookupCockpitArgs{
ProjectId: pulumi.StringRef("11111111-1111-1111-1111-111111111111"),
}, 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 a specific Project's Cockpit
var main = Scaleway.GetCockpit.Invoke(new()
{
ProjectId = "11111111-1111-1111-1111-111111111111",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.scaleway.ScalewayFunctions;
import com.pulumi.scaleway.inputs.GetCockpitArgs;
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 a specific Project's Cockpit
final var main = ScalewayFunctions.getCockpit(GetCockpitArgs.builder()
.projectId("11111111-1111-1111-1111-111111111111")
.build());
}
}
variables:
# Get a specific Project's Cockpit
main:
fn::invoke:
Function: scaleway:getCockpit
Arguments:
projectId: 11111111-1111-1111-1111-111111111111
Using getCockpit
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 getCockpit(args: GetCockpitArgs, opts?: InvokeOptions): Promise<GetCockpitResult>
function getCockpitOutput(args: GetCockpitOutputArgs, opts?: InvokeOptions): Output<GetCockpitResult>
def get_cockpit(project_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetCockpitResult
def get_cockpit_output(project_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetCockpitResult]
func LookupCockpit(ctx *Context, args *LookupCockpitArgs, opts ...InvokeOption) (*LookupCockpitResult, error)
func LookupCockpitOutput(ctx *Context, args *LookupCockpitOutputArgs, opts ...InvokeOption) LookupCockpitResultOutput
> Note: This function is named LookupCockpit
in the Go SDK.
public static class GetCockpit
{
public static Task<GetCockpitResult> InvokeAsync(GetCockpitArgs args, InvokeOptions? opts = null)
public static Output<GetCockpitResult> Invoke(GetCockpitInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetCockpitResult> getCockpit(GetCockpitArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: scaleway:index/getCockpit:getCockpit
arguments:
# arguments dictionary
The following arguments are supported:
- Project
Id string - Specifies the ID of the Scaleway Project that the Cockpit is associated with. If not specified, it defaults to the Project ID specified in the provider configuration.
- Project
Id string - Specifies the ID of the Scaleway Project that the Cockpit is associated with. If not specified, it defaults to the Project ID specified in the provider configuration.
- project
Id String - Specifies the ID of the Scaleway Project that the Cockpit is associated with. If not specified, it defaults to the Project ID specified in the provider configuration.
- project
Id string - Specifies the ID of the Scaleway Project that the Cockpit is associated with. If not specified, it defaults to the Project ID specified in the provider configuration.
- project_
id str - Specifies the ID of the Scaleway Project that the Cockpit is associated with. If not specified, it defaults to the Project ID specified in the provider configuration.
- project
Id String - Specifies the ID of the Scaleway Project that the Cockpit is associated with. If not specified, it defaults to the Project ID specified in the provider configuration.
getCockpit Result
The following output properties are available:
- Endpoints
List<Pulumiverse.
Scaleway. Outputs. Get Cockpit Endpoint> - (Deprecated) A list of endpoints related to Cockpit, each with specific URLs:
- Id string
- The provider-assigned unique ID for this managed resource.
- Plan string
- Plan
Id string - (Deprecated) ID of the current pricing plan
- Push
Urls List<Pulumiverse.Scaleway. Outputs. Get Cockpit Push Url> - Project
Id string
- Endpoints
[]Get
Cockpit Endpoint - (Deprecated) A list of endpoints related to Cockpit, each with specific URLs:
- Id string
- The provider-assigned unique ID for this managed resource.
- Plan string
- Plan
Id string - (Deprecated) ID of the current pricing plan
- Push
Urls []GetCockpit Push Url - Project
Id string
- endpoints
List<Get
Cockpit Endpoint> - (Deprecated) A list of endpoints related to Cockpit, each with specific URLs:
- id String
- The provider-assigned unique ID for this managed resource.
- plan String
- plan
Id String - (Deprecated) ID of the current pricing plan
- push
Urls List<GetCockpit Push Url> - project
Id String
- endpoints
Get
Cockpit Endpoint[] - (Deprecated) A list of endpoints related to Cockpit, each with specific URLs:
- id string
- The provider-assigned unique ID for this managed resource.
- plan string
- plan
Id string - (Deprecated) ID of the current pricing plan
- push
Urls GetCockpit Push Url[] - project
Id string
- endpoints
Sequence[Get
Cockpit Endpoint] - (Deprecated) A list of endpoints related to Cockpit, each with specific URLs:
- id str
- The provider-assigned unique ID for this managed resource.
- plan str
- plan_
id str - (Deprecated) ID of the current pricing plan
- push_
urls Sequence[GetCockpit Push Url] - project_
id str
- endpoints List<Property Map>
- (Deprecated) A list of endpoints related to Cockpit, each with specific URLs:
- id String
- The provider-assigned unique ID for this managed resource.
- plan String
- plan
Id String - (Deprecated) ID of the current pricing plan
- push
Urls List<Property Map> - project
Id String
Supporting Types
GetCockpitEndpoint
- Alertmanager
Url string - (Deprecated) URL for the Alert manager.
- Grafana
Url string - (Deprecated) URL for Grafana.
- Logs
Url string - (Deprecated) URL for logs to retrieve in the Data sources tab of the Scaleway console.
- Metrics
Url string - (Deprecated) URL for metrics to retrieve in the Data sources tab of the Scaleway console.
- Traces
Url string - The traces URL
- Alertmanager
Url string - (Deprecated) URL for the Alert manager.
- Grafana
Url string - (Deprecated) URL for Grafana.
- Logs
Url string - (Deprecated) URL for logs to retrieve in the Data sources tab of the Scaleway console.
- Metrics
Url string - (Deprecated) URL for metrics to retrieve in the Data sources tab of the Scaleway console.
- Traces
Url string - The traces URL
- alertmanager
Url String - (Deprecated) URL for the Alert manager.
- grafana
Url String - (Deprecated) URL for Grafana.
- logs
Url String - (Deprecated) URL for logs to retrieve in the Data sources tab of the Scaleway console.
- metrics
Url String - (Deprecated) URL for metrics to retrieve in the Data sources tab of the Scaleway console.
- traces
Url String - The traces URL
- alertmanager
Url string - (Deprecated) URL for the Alert manager.
- grafana
Url string - (Deprecated) URL for Grafana.
- logs
Url string - (Deprecated) URL for logs to retrieve in the Data sources tab of the Scaleway console.
- metrics
Url string - (Deprecated) URL for metrics to retrieve in the Data sources tab of the Scaleway console.
- traces
Url string - The traces URL
- alertmanager_
url str - (Deprecated) URL for the Alert manager.
- grafana_
url str - (Deprecated) URL for Grafana.
- logs_
url str - (Deprecated) URL for logs to retrieve in the Data sources tab of the Scaleway console.
- metrics_
url str - (Deprecated) URL for metrics to retrieve in the Data sources tab of the Scaleway console.
- traces_
url str - The traces URL
- alertmanager
Url String - (Deprecated) URL for the Alert manager.
- grafana
Url String - (Deprecated) URL for Grafana.
- logs
Url String - (Deprecated) URL for logs to retrieve in the Data sources tab of the Scaleway console.
- metrics
Url String - (Deprecated) URL for metrics to retrieve in the Data sources tab of the Scaleway console.
- traces
Url String - The traces URL
GetCockpitPushUrl
- Push
Logs stringUrl - Push URL for logs (Grafana Loki)
- Push
Metrics stringUrl - Push URL for metrics (Grafana Mimir)
- Push
Logs stringUrl - Push URL for logs (Grafana Loki)
- Push
Metrics stringUrl - Push URL for metrics (Grafana Mimir)
- push
Logs StringUrl - Push URL for logs (Grafana Loki)
- push
Metrics StringUrl - Push URL for metrics (Grafana Mimir)
- push
Logs stringUrl - Push URL for logs (Grafana Loki)
- push
Metrics stringUrl - Push URL for metrics (Grafana Mimir)
- push_
logs_ strurl - Push URL for logs (Grafana Loki)
- push_
metrics_ strurl - Push URL for metrics (Grafana Mimir)
- push
Logs StringUrl - Push URL for logs (Grafana Loki)
- push
Metrics StringUrl - Push URL for metrics (Grafana Mimir)
Package Details
- Repository
- scaleway pulumiverse/pulumi-scaleway
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
scaleway
Terraform Provider.