Show / Hide Table of Contents

Class EndpointV3

Manages a V3 Endpoint 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 = "my-service-type",
    });
    var endpoint1 = new OpenStack.Identity.EndpointV3("endpoint1", new OpenStack.Identity.EndpointV3Args
    {
        EndpointRegion = service1.Region,
        ServiceId = service1.Id,
        Url = "http://my-endpoint",
    });
}

}
Inheritance
System.Object
Resource
CustomResource
EndpointV3
Inherited Members
CustomResource.Id
Resource.GetResourceType()
Resource.GetResourceName()
Resource.Urn
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.OpenStack.Identity
Assembly: Pulumi.OpenStack.dll
Syntax
public class EndpointV3 : CustomResource

Constructors

View Source

EndpointV3(String, EndpointV3Args, CustomResourceOptions)

Create a EndpointV3 resource with the given unique name, arguments, and options.

Declaration
public EndpointV3(string name, EndpointV3Args args, CustomResourceOptions options = null)
Parameters
Type Name Description
System.String name

The unique name of the resource

EndpointV3Args args

The arguments used to populate this resource's properties

CustomResourceOptions options

A bag of options that control this resource's behavior

Properties

View Source

EndpointRegion

The endpoint region. The region and endpoint_region can be different.

Declaration
public Output<string> EndpointRegion { get; }
Property Value
Type Description
Output<System.String>
View Source

Interface

The endpoint interface. Valid values are public, internal and admin. Default value is public

Declaration
public Output<string> Interface { get; }
Property Value
Type Description
Output<System.String>
View Source

Name

The endpoint name.

Declaration
public Output<string> Name { get; }
Property Value
Type Description
Output<System.String>
View Source

Region

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

Declaration
public Output<string> Region { get; }
Property Value
Type Description
Output<System.String>
View Source

ServiceId

The endpoint service ID.

Declaration
public Output<string> ServiceId { get; }
Property Value
Type Description
Output<System.String>
View Source

ServiceName

The service name of the endpoint.

Declaration
public Output<string> ServiceName { get; }
Property Value
Type Description
Output<System.String>
View Source

ServiceType

The service type of the endpoint.

Declaration
public Output<string> ServiceType { get; }
Property Value
Type Description
Output<System.String>
View Source

Url

The endpoint url.

Declaration
public Output<string> Url { get; }
Property Value
Type Description
Output<System.String>

Methods

View Source

Get(String, Input<String>, EndpointV3State, CustomResourceOptions)

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

Declaration
public static EndpointV3 Get(string name, Input<string> id, EndpointV3State state = null, CustomResourceOptions options = null)
Parameters
Type Name Description
System.String name

The unique name of the resulting resource.

Input<System.String> id

The unique provider ID of the resource to lookup.

EndpointV3State state

Any extra arguments used during the lookup.

CustomResourceOptions options

A bag of options that control this resource's behavior

Returns
Type Description
EndpointV3
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.