avi.Serviceauthprofile
Explore with Pulumi AI
<!–
Copyright 2021 VMware, Inc.
SPDX-License-Identifier: Mozilla Public License 2.0
–>
layout: “avi”
page_title: “Avi: avi.Serviceauthprofile” sidebar_current: “docs-avi-resource-serviceauthprofile” description: |- Creates and manages Avi ServiceAuthProfile.
avi.Serviceauthprofile
The ServiceAuthProfile resource allows the creation and management of Avi ServiceAuthProfile
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as avi from "@pulumi/avi";
const foo = new avi.Serviceauthprofile("foo", {tenantRef: "/api/tenant/?name=admin"});
import pulumi
import pulumi_avi as avi
foo = avi.Serviceauthprofile("foo", tenant_ref="/api/tenant/?name=admin")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/avi/v31/avi"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := avi.NewServiceauthprofile(ctx, "foo", &avi.ServiceauthprofileArgs{
TenantRef: pulumi.String("/api/tenant/?name=admin"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Avi = Pulumi.Avi;
return await Deployment.RunAsync(() =>
{
var foo = new Avi.Serviceauthprofile("foo", new()
{
TenantRef = "/api/tenant/?name=admin",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.avi.Serviceauthprofile;
import com.pulumi.avi.ServiceauthprofileArgs;
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) {
var foo = new Serviceauthprofile("foo", ServiceauthprofileArgs.builder()
.tenantRef("/api/tenant/?name=admin")
.build());
}
}
resources:
foo:
type: avi:Serviceauthprofile
properties:
tenantRef: /api/tenant/?name=admin
Create Serviceauthprofile Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Serviceauthprofile(name: string, args: ServiceauthprofileArgs, opts?: CustomResourceOptions);
@overload
def Serviceauthprofile(resource_name: str,
args: ServiceauthprofileArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Serviceauthprofile(resource_name: str,
opts: Optional[ResourceOptions] = None,
type: Optional[str] = None,
configpb_attributes: Optional[Sequence[ServiceauthprofileConfigpbAttributeArgs]] = None,
description: Optional[str] = None,
name: Optional[str] = None,
service_oauth_profiles: Optional[Sequence[ServiceauthprofileServiceOauthProfileArgs]] = None,
serviceauthprofile_id: Optional[str] = None,
tenant_ref: Optional[str] = None,
uuid: Optional[str] = None)
func NewServiceauthprofile(ctx *Context, name string, args ServiceauthprofileArgs, opts ...ResourceOption) (*Serviceauthprofile, error)
public Serviceauthprofile(string name, ServiceauthprofileArgs args, CustomResourceOptions? opts = null)
public Serviceauthprofile(String name, ServiceauthprofileArgs args)
public Serviceauthprofile(String name, ServiceauthprofileArgs args, CustomResourceOptions options)
type: avi:Serviceauthprofile
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ServiceauthprofileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ServiceauthprofileArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ServiceauthprofileArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ServiceauthprofileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ServiceauthprofileArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var serviceauthprofileResource = new Avi.Serviceauthprofile("serviceauthprofileResource", new()
{
Type = "string",
ConfigpbAttributes = new[]
{
new Avi.Inputs.ServiceauthprofileConfigpbAttributeArgs
{
Version = "string",
},
},
Description = "string",
Name = "string",
ServiceOauthProfiles = new[]
{
new Avi.Inputs.ServiceauthprofileServiceOauthProfileArgs
{
AuthorizationEndpoint = "string",
ClientId = "string",
OrgId = "string",
ServiceId = "string",
ServiceName = "string",
},
},
ServiceauthprofileId = "string",
TenantRef = "string",
Uuid = "string",
});
example, err := avi.NewServiceauthprofile(ctx, "serviceauthprofileResource", &avi.ServiceauthprofileArgs{
Type: pulumi.String("string"),
ConfigpbAttributes: avi.ServiceauthprofileConfigpbAttributeArray{
&avi.ServiceauthprofileConfigpbAttributeArgs{
Version: pulumi.String("string"),
},
},
Description: pulumi.String("string"),
Name: pulumi.String("string"),
ServiceOauthProfiles: avi.ServiceauthprofileServiceOauthProfileArray{
&avi.ServiceauthprofileServiceOauthProfileArgs{
AuthorizationEndpoint: pulumi.String("string"),
ClientId: pulumi.String("string"),
OrgId: pulumi.String("string"),
ServiceId: pulumi.String("string"),
ServiceName: pulumi.String("string"),
},
},
ServiceauthprofileId: pulumi.String("string"),
TenantRef: pulumi.String("string"),
Uuid: pulumi.String("string"),
})
var serviceauthprofileResource = new Serviceauthprofile("serviceauthprofileResource", ServiceauthprofileArgs.builder()
.type("string")
.configpbAttributes(ServiceauthprofileConfigpbAttributeArgs.builder()
.version("string")
.build())
.description("string")
.name("string")
.serviceOauthProfiles(ServiceauthprofileServiceOauthProfileArgs.builder()
.authorizationEndpoint("string")
.clientId("string")
.orgId("string")
.serviceId("string")
.serviceName("string")
.build())
.serviceauthprofileId("string")
.tenantRef("string")
.uuid("string")
.build());
serviceauthprofile_resource = avi.Serviceauthprofile("serviceauthprofileResource",
type="string",
configpb_attributes=[{
"version": "string",
}],
description="string",
name="string",
service_oauth_profiles=[{
"authorization_endpoint": "string",
"client_id": "string",
"org_id": "string",
"service_id": "string",
"service_name": "string",
}],
serviceauthprofile_id="string",
tenant_ref="string",
uuid="string")
const serviceauthprofileResource = new avi.Serviceauthprofile("serviceauthprofileResource", {
type: "string",
configpbAttributes: [{
version: "string",
}],
description: "string",
name: "string",
serviceOauthProfiles: [{
authorizationEndpoint: "string",
clientId: "string",
orgId: "string",
serviceId: "string",
serviceName: "string",
}],
serviceauthprofileId: "string",
tenantRef: "string",
uuid: "string",
});
type: avi:Serviceauthprofile
properties:
configpbAttributes:
- version: string
description: string
name: string
serviceOauthProfiles:
- authorizationEndpoint: string
clientId: string
orgId: string
serviceId: string
serviceName: string
serviceauthprofileId: string
tenantRef: string
type: string
uuid: string
Serviceauthprofile Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Serviceauthprofile resource accepts the following input properties:
- Type string
- Type of the service auth profile. Enum options - SERVICE_AUTH_OAUTH. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Configpb
Attributes List<ServiceauthprofileConfigpb Attribute> - Protobuf versioning for config pbs. Field introduced in 30.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Description string
- Description for the service auth profile. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Name string
- Name of the service auth profile. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Service
Oauth List<ServiceauthprofileProfiles Service Oauth Profile> - Oauth profile - common endpoint information for service authentication. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Serviceauthprofile
Id string - Tenant
Ref string - Tenant ref for the service auth profile. It is a reference to an object of type tenant. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Uuid string
- Uuid of the service auth profile. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Type string
- Type of the service auth profile. Enum options - SERVICE_AUTH_OAUTH. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Configpb
Attributes []ServiceauthprofileConfigpb Attribute Args - Protobuf versioning for config pbs. Field introduced in 30.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Description string
- Description for the service auth profile. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Name string
- Name of the service auth profile. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Service
Oauth []ServiceauthprofileProfiles Service Oauth Profile Args - Oauth profile - common endpoint information for service authentication. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Serviceauthprofile
Id string - Tenant
Ref string - Tenant ref for the service auth profile. It is a reference to an object of type tenant. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Uuid string
- Uuid of the service auth profile. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- type String
- Type of the service auth profile. Enum options - SERVICE_AUTH_OAUTH. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- configpb
Attributes List<ServiceauthprofileConfigpb Attribute> - Protobuf versioning for config pbs. Field introduced in 30.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description String
- Description for the service auth profile. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- name String
- Name of the service auth profile. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- service
Oauth List<ServiceauthprofileProfiles Service Oauth Profile> - Oauth profile - common endpoint information for service authentication. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- serviceauthprofile
Id String - tenant
Ref String - Tenant ref for the service auth profile. It is a reference to an object of type tenant. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- uuid String
- Uuid of the service auth profile. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- type string
- Type of the service auth profile. Enum options - SERVICE_AUTH_OAUTH. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- configpb
Attributes ServiceauthprofileConfigpb Attribute[] - Protobuf versioning for config pbs. Field introduced in 30.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description string
- Description for the service auth profile. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- name string
- Name of the service auth profile. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- service
Oauth ServiceauthprofileProfiles Service Oauth Profile[] - Oauth profile - common endpoint information for service authentication. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- serviceauthprofile
Id string - tenant
Ref string - Tenant ref for the service auth profile. It is a reference to an object of type tenant. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- uuid string
- Uuid of the service auth profile. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- type str
- Type of the service auth profile. Enum options - SERVICE_AUTH_OAUTH. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- configpb_
attributes Sequence[ServiceauthprofileConfigpb Attribute Args] - Protobuf versioning for config pbs. Field introduced in 30.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description str
- Description for the service auth profile. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- name str
- Name of the service auth profile. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- service_
oauth_ Sequence[Serviceauthprofileprofiles Service Oauth Profile Args] - Oauth profile - common endpoint information for service authentication. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- serviceauthprofile_
id str - tenant_
ref str - Tenant ref for the service auth profile. It is a reference to an object of type tenant. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- uuid str
- Uuid of the service auth profile. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- type String
- Type of the service auth profile. Enum options - SERVICE_AUTH_OAUTH. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- configpb
Attributes List<Property Map> - Protobuf versioning for config pbs. Field introduced in 30.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description String
- Description for the service auth profile. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- name String
- Name of the service auth profile. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- service
Oauth List<Property Map>Profiles - Oauth profile - common endpoint information for service authentication. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- serviceauthprofile
Id String - tenant
Ref String - Tenant ref for the service auth profile. It is a reference to an object of type tenant. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- uuid String
- Uuid of the service auth profile. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
Outputs
All input properties are implicitly available as output properties. Additionally, the Serviceauthprofile 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 string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing Serviceauthprofile Resource
Get an existing Serviceauthprofile 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?: ServiceauthprofileState, opts?: CustomResourceOptions): Serviceauthprofile
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
configpb_attributes: Optional[Sequence[ServiceauthprofileConfigpbAttributeArgs]] = None,
description: Optional[str] = None,
name: Optional[str] = None,
service_oauth_profiles: Optional[Sequence[ServiceauthprofileServiceOauthProfileArgs]] = None,
serviceauthprofile_id: Optional[str] = None,
tenant_ref: Optional[str] = None,
type: Optional[str] = None,
uuid: Optional[str] = None) -> Serviceauthprofile
func GetServiceauthprofile(ctx *Context, name string, id IDInput, state *ServiceauthprofileState, opts ...ResourceOption) (*Serviceauthprofile, error)
public static Serviceauthprofile Get(string name, Input<string> id, ServiceauthprofileState? state, CustomResourceOptions? opts = null)
public static Serviceauthprofile get(String name, Output<String> id, ServiceauthprofileState state, CustomResourceOptions options)
resources: _: type: avi:Serviceauthprofile get: id: ${id}
- 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.
- 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.
- Configpb
Attributes List<ServiceauthprofileConfigpb Attribute> - Protobuf versioning for config pbs. Field introduced in 30.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Description string
- Description for the service auth profile. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Name string
- Name of the service auth profile. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Service
Oauth List<ServiceauthprofileProfiles Service Oauth Profile> - Oauth profile - common endpoint information for service authentication. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Serviceauthprofile
Id string - Tenant
Ref string - Tenant ref for the service auth profile. It is a reference to an object of type tenant. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Type string
- Type of the service auth profile. Enum options - SERVICE_AUTH_OAUTH. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Uuid string
- Uuid of the service auth profile. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Configpb
Attributes []ServiceauthprofileConfigpb Attribute Args - Protobuf versioning for config pbs. Field introduced in 30.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Description string
- Description for the service auth profile. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Name string
- Name of the service auth profile. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Service
Oauth []ServiceauthprofileProfiles Service Oauth Profile Args - Oauth profile - common endpoint information for service authentication. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Serviceauthprofile
Id string - Tenant
Ref string - Tenant ref for the service auth profile. It is a reference to an object of type tenant. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Type string
- Type of the service auth profile. Enum options - SERVICE_AUTH_OAUTH. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Uuid string
- Uuid of the service auth profile. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- configpb
Attributes List<ServiceauthprofileConfigpb Attribute> - Protobuf versioning for config pbs. Field introduced in 30.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description String
- Description for the service auth profile. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- name String
- Name of the service auth profile. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- service
Oauth List<ServiceauthprofileProfiles Service Oauth Profile> - Oauth profile - common endpoint information for service authentication. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- serviceauthprofile
Id String - tenant
Ref String - Tenant ref for the service auth profile. It is a reference to an object of type tenant. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- type String
- Type of the service auth profile. Enum options - SERVICE_AUTH_OAUTH. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- uuid String
- Uuid of the service auth profile. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- configpb
Attributes ServiceauthprofileConfigpb Attribute[] - Protobuf versioning for config pbs. Field introduced in 30.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description string
- Description for the service auth profile. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- name string
- Name of the service auth profile. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- service
Oauth ServiceauthprofileProfiles Service Oauth Profile[] - Oauth profile - common endpoint information for service authentication. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- serviceauthprofile
Id string - tenant
Ref string - Tenant ref for the service auth profile. It is a reference to an object of type tenant. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- type string
- Type of the service auth profile. Enum options - SERVICE_AUTH_OAUTH. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- uuid string
- Uuid of the service auth profile. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- configpb_
attributes Sequence[ServiceauthprofileConfigpb Attribute Args] - Protobuf versioning for config pbs. Field introduced in 30.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description str
- Description for the service auth profile. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- name str
- Name of the service auth profile. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- service_
oauth_ Sequence[Serviceauthprofileprofiles Service Oauth Profile Args] - Oauth profile - common endpoint information for service authentication. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- serviceauthprofile_
id str - tenant_
ref str - Tenant ref for the service auth profile. It is a reference to an object of type tenant. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- type str
- Type of the service auth profile. Enum options - SERVICE_AUTH_OAUTH. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- uuid str
- Uuid of the service auth profile. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- configpb
Attributes List<Property Map> - Protobuf versioning for config pbs. Field introduced in 30.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description String
- Description for the service auth profile. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- name String
- Name of the service auth profile. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- service
Oauth List<Property Map>Profiles - Oauth profile - common endpoint information for service authentication. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- serviceauthprofile
Id String - tenant
Ref String - Tenant ref for the service auth profile. It is a reference to an object of type tenant. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- type String
- Type of the service auth profile. Enum options - SERVICE_AUTH_OAUTH. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- uuid String
- Uuid of the service auth profile. Field introduced in 30.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
Supporting Types
ServiceauthprofileConfigpbAttribute, ServiceauthprofileConfigpbAttributeArgs
- Version string
- Version string
- version String
- version string
- version str
- version String
ServiceauthprofileServiceOauthProfile, ServiceauthprofileServiceOauthProfileArgs
- string
- Client
Id string - Org
Id string - Service
Id string - Service
Name string
- string
- Client
Id string - Org
Id string - Service
Id string - Service
Name string
- String
- client
Id String - org
Id String - service
Id String - service
Name String
- string
- client
Id string - org
Id string - service
Id string - service
Name string
- str
- client_
id str - org_
id str - service_
id str - service_
name str
- String
- client
Id String - org
Id String - service
Id String - service
Name String
Package Details
- Repository
- avi vmware/terraform-provider-avi
- License
- Notes
- This Pulumi package is based on the
avi
Terraform Provider.