koyeb v0.1.7 published on Wednesday, Nov 30, 2022 by Koyeb
koyeb.getService
Explore with Pulumi AI
Example Usage
using System.Collections.Generic;
using Pulumi;
using Koyeb = Pulumi.Koyeb;
return await Deployment.RunAsync(() =>
{
var my_service = Koyeb.GetService.Invoke(new()
{
Slug = "my-app/my-service",
});
});
package main
import (
"github.com/pulumi/pulumi-koyeb/sdk/go/koyeb"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := koyeb.GetService(ctx, &GetServiceArgs{
Slug: "my-app/my-service",
}, nil)
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.koyeb.KoyebFunctions;
import com.pulumi.koyeb.inputs.GetServiceArgs;
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) {
final var my-service = KoyebFunctions.getService(GetServiceArgs.builder()
.slug("my-app/my-service")
.build());
}
}
import pulumi
import pulumi_koyeb as koyeb
my_service = koyeb.get_service(slug="my-app/my-service")
import * as pulumi from "@pulumi/pulumi";
import * as koyeb from "@pulumi/koyeb";
const my_service = pulumi.output(koyeb.getService({
slug: "my-app/my-service",
}));
variables:
my-service:
Fn::Invoke:
Function: koyeb:getService
Arguments:
slug: my-app/my-service
Using getService
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 getService(args: GetServiceArgs, opts?: InvokeOptions): Promise<GetServiceResult>
function getServiceOutput(args: GetServiceOutputArgs, opts?: InvokeOptions): Output<GetServiceResult>
def get_service(messages: Optional[str] = None,
slug: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetServiceResult
def get_service_output(messages: Optional[pulumi.Input[str]] = None,
slug: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetServiceResult]
func GetService(ctx *Context, args *GetServiceArgs, opts ...InvokeOption) (*GetServiceResult, error)
func GetServiceOutput(ctx *Context, args *GetServiceOutputArgs, opts ...InvokeOption) GetServiceResultOutput
> Note: This function is named GetService
in the Go SDK.
public static class GetService
{
public static Task<GetServiceResult> InvokeAsync(GetServiceArgs args, InvokeOptions? opts = null)
public static Output<GetServiceResult> Invoke(GetServiceInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetServiceResult> getService(GetServiceArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: koyeb:index/getService:getService
arguments:
# arguments dictionary
The following arguments are supported:
getService Result
The following output properties are available:
- Active
Deployment string - The service active deployment id
- App
Id string - The app id the service is assigned
- Created
At string - The date and time of when the service was created
- Id string
- The id of the service
- Latest
Deployment string - The service latest deployment id
- Messages string
- The status messages of the service
- Name string
- The name of the service
- Organization
Id string - The organization id owning the service
- Paused
At string - The date and time of when the service was last updated
- Resumed
At string - The date and time of when the service was last updated
- Slug string
- The service slug composed of the app and service name, for instance my-app/my-service
- Status string
- The status of the service
- Terminated
At string - The date and time of when the service was last updated
- Updated
At string - The date and time of when the service was last updated
- Version string
- The version of the service
- Active
Deployment string - The service active deployment id
- App
Id string - The app id the service is assigned
- Created
At string - The date and time of when the service was created
- Id string
- The id of the service
- Latest
Deployment string - The service latest deployment id
- Messages string
- The status messages of the service
- Name string
- The name of the service
- Organization
Id string - The organization id owning the service
- Paused
At string - The date and time of when the service was last updated
- Resumed
At string - The date and time of when the service was last updated
- Slug string
- The service slug composed of the app and service name, for instance my-app/my-service
- Status string
- The status of the service
- Terminated
At string - The date and time of when the service was last updated
- Updated
At string - The date and time of when the service was last updated
- Version string
- The version of the service
- active
Deployment String - The service active deployment id
- app
Id String - The app id the service is assigned
- created
At String - The date and time of when the service was created
- id String
- The id of the service
- latest
Deployment String - The service latest deployment id
- messages String
- The status messages of the service
- name String
- The name of the service
- organization
Id String - The organization id owning the service
- paused
At String - The date and time of when the service was last updated
- resumed
At String - The date and time of when the service was last updated
- slug String
- The service slug composed of the app and service name, for instance my-app/my-service
- status String
- The status of the service
- terminated
At String - The date and time of when the service was last updated
- updated
At String - The date and time of when the service was last updated
- version String
- The version of the service
- active
Deployment string - The service active deployment id
- app
Id string - The app id the service is assigned
- created
At string - The date and time of when the service was created
- id string
- The id of the service
- latest
Deployment string - The service latest deployment id
- messages string
- The status messages of the service
- name string
- The name of the service
- organization
Id string - The organization id owning the service
- paused
At string - The date and time of when the service was last updated
- resumed
At string - The date and time of when the service was last updated
- slug string
- The service slug composed of the app and service name, for instance my-app/my-service
- status string
- The status of the service
- terminated
At string - The date and time of when the service was last updated
- updated
At string - The date and time of when the service was last updated
- version string
- The version of the service
- active_
deployment str - The service active deployment id
- app_
id str - The app id the service is assigned
- created_
at str - The date and time of when the service was created
- id str
- The id of the service
- latest_
deployment str - The service latest deployment id
- messages str
- The status messages of the service
- name str
- The name of the service
- organization_
id str - The organization id owning the service
- paused_
at str - The date and time of when the service was last updated
- resumed_
at str - The date and time of when the service was last updated
- slug str
- The service slug composed of the app and service name, for instance my-app/my-service
- status str
- The status of the service
- terminated_
at str - The date and time of when the service was last updated
- updated_
at str - The date and time of when the service was last updated
- version str
- The version of the service
- active
Deployment String - The service active deployment id
- app
Id String - The app id the service is assigned
- created
At String - The date and time of when the service was created
- id String
- The id of the service
- latest
Deployment String - The service latest deployment id
- messages String
- The status messages of the service
- name String
- The name of the service
- organization
Id String - The organization id owning the service
- paused
At String - The date and time of when the service was last updated
- resumed
At String - The date and time of when the service was last updated
- slug String
- The service slug composed of the app and service name, for instance my-app/my-service
- status String
- The status of the service
- terminated
At String - The date and time of when the service was last updated
- updated
At String - The date and time of when the service was last updated
- version String
- The version of the service
Package Details
- Repository
- koyeb koyeb/pulumi-koyeb
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
koyeb
Terraform Provider.