ServiceV3

Manages a V3 Service resource within OpenStack Keystone.

Note: This usually requires admin privileges.

Example Usage

using Pulumi;
using OpenStack = Pulumi.OpenStack;

class MyStack : Stack
{
    public MyStack()
    {
        var service1 = new OpenStack.Identity.ServiceV3("service1", new OpenStack.Identity.ServiceV3Args
        {
            Type = "custom",
        });
    }

}

Coming soon!

import pulumi
import pulumi_openstack as openstack

service1 = openstack.identity.ServiceV3("service1", type="custom")
import * as pulumi from "@pulumi/pulumi";
import * as openstack from "@pulumi/openstack";

const service1 = new openstack.identity.ServiceV3("service_1", {
    type: "custom",
});

Create a ServiceV3 Resource

def ServiceV3(resource_name, opts=None, description=None, enabled=None, name=None, region=None, type=None, __props__=None);
func NewServiceV3(ctx *Context, name string, args ServiceV3Args, opts ...ResourceOption) (*ServiceV3, error)
public ServiceV3(string name, ServiceV3Args args, CustomResourceOptions? opts = null)
name string
The unique name of the resource.
args ServiceV3Args
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name str
The unique name of the resource.
opts ResourceOptions
A bag of options that control this resource's behavior.
ctx Context
Context object for the current deployment.
name string
The unique name of the resource.
args ServiceV3Args
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args ServiceV3Args
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.

ServiceV3 Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Programming Model docs.

Inputs

The ServiceV3 resource accepts the following input properties:

Type string

The service type.

Description string

The service description.

Enabled bool

The service status. Defaults to true.

Name string

The service name.

Region string

The region in which to obtain the V3 Keystone client. If omitted, the region argument of the provider is used.

Type string

The service type.

Description string

The service description.

Enabled bool

The service status. Defaults to true.

Name string

The service name.

Region string

The region in which to obtain the V3 Keystone client. If omitted, the region argument of the provider is used.

type string

The service type.

description string

The service description.

enabled boolean

The service status. Defaults to true.

name string

The service name.

region string

The region in which to obtain the V3 Keystone client. If omitted, the region argument of the provider is used.

type str

The service type.

description str

The service description.

enabled bool

The service status. Defaults to true.

name str

The service name.

region str

The region in which to obtain the V3 Keystone client. If omitted, the region argument of the provider is used.

Outputs

All input properties are implicitly available as output properties. Additionally, the ServiceV3 resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.

Look up an Existing ServiceV3 Resource

Get an existing ServiceV3 resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: ServiceV3State, opts?: CustomResourceOptions): ServiceV3
static get(resource_name, id, opts=None, description=None, enabled=None, name=None, region=None, type=None, __props__=None);
func GetServiceV3(ctx *Context, name string, id IDInput, state *ServiceV3State, opts ...ResourceOption) (*ServiceV3, error)
public static ServiceV3 Get(string name, Input<string> id, ServiceV3State? state, CustomResourceOptions? opts = null)
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.

The following state arguments are supported:

Description string

The service description.

Enabled bool

The service status. Defaults to true.

Name string

The service name.

Region string

The region in which to obtain the V3 Keystone client. If omitted, the region argument of the provider is used.

Type string

The service type.

Description string

The service description.

Enabled bool

The service status. Defaults to true.

Name string

The service name.

Region string

The region in which to obtain the V3 Keystone client. If omitted, the region argument of the provider is used.

Type string

The service type.

description string

The service description.

enabled boolean

The service status. Defaults to true.

name string

The service name.

region string

The region in which to obtain the V3 Keystone client. If omitted, the region argument of the provider is used.

type string

The service type.

description str

The service description.

enabled bool

The service status. Defaults to true.

name str

The service name.

region str

The region in which to obtain the V3 Keystone client. If omitted, the region argument of the provider is used.

type str

The service type.

Package Details

Repository
https://github.com/pulumi/pulumi-openstack
License
Apache-2.0
Notes
This Pulumi package is based on the openstack Terraform Provider.