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
new ServiceV3(name: string, args: ServiceV3Args, opts?: CustomResourceOptions);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:
Outputs
All input properties are implicitly available as output properties. Additionally, the ServiceV3 resource produces the following output properties:
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): ServiceV3static 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:
Package Details
- Repository
- https://github.com/pulumi/pulumi-openstack
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
openstackTerraform Provider.