alicloud.vod.getDomains
Explore with Pulumi AI
This data source provides the Vod Domains of the current Alibaba Cloud user.
NOTE: Available in v1.136.0+.
Example Usage
Basic Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() =>
{
var defaultDomain = new AliCloud.Vod.Domain("defaultDomain", new()
{
DomainName = "your_domain_name",
Scope = "domestic",
Sources = new[]
{
new AliCloud.Vod.Inputs.DomainSourceArgs
{
SourceType = "domain",
SourceContent = "your_source_content",
SourcePort = "80",
},
},
Tags =
{
{ "key1", "value1" },
{ "key2", "value2" },
},
});
var defaultDomains = AliCloud.Vod.GetDomains.Invoke(new()
{
Ids = new[]
{
defaultDomain.Id,
},
Tags =
{
{ "key1", "value1" },
{ "key2", "value2" },
},
});
return new Dictionary<string, object?>
{
["vodDomain"] = defaultDomains.Apply(getDomainsResult => getDomainsResult.Domains[0]),
};
});
package main
import (
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/vod"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
defaultDomain, err := vod.NewDomain(ctx, "defaultDomain", &vod.DomainArgs{
DomainName: pulumi.String("your_domain_name"),
Scope: pulumi.String("domestic"),
Sources: vod.DomainSourceArray{
&vod.DomainSourceArgs{
SourceType: pulumi.String("domain"),
SourceContent: pulumi.String("your_source_content"),
SourcePort: pulumi.String("80"),
},
},
Tags: pulumi.AnyMap{
"key1": pulumi.Any("value1"),
"key2": pulumi.Any("value2"),
},
})
if err != nil {
return err
}
defaultDomains := vod.GetDomainsOutput(ctx, vod.GetDomainsOutputArgs{
Ids: pulumi.StringArray{
defaultDomain.ID(),
},
Tags: pulumi.AnyMap{
"key1": pulumi.Any("value1"),
"key2": pulumi.Any("value2"),
},
}, nil)
ctx.Export("vodDomain", defaultDomains.ApplyT(func(defaultDomains vod.GetDomainsResult) (vod.GetDomainsDomain, error) {
return defaultDomains.Domains[0], nil
}).(vod.GetDomainsDomainOutput))
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.vod.Domain;
import com.pulumi.alicloud.vod.DomainArgs;
import com.pulumi.alicloud.vod.inputs.DomainSourceArgs;
import com.pulumi.alicloud.vod.VodFunctions;
import com.pulumi.alicloud.vod.inputs.GetDomainsArgs;
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 defaultDomain = new Domain("defaultDomain", DomainArgs.builder()
.domainName("your_domain_name")
.scope("domestic")
.sources(DomainSourceArgs.builder()
.sourceType("domain")
.sourceContent("your_source_content")
.sourcePort("80")
.build())
.tags(Map.ofEntries(
Map.entry("key1", "value1"),
Map.entry("key2", "value2")
))
.build());
final var defaultDomains = VodFunctions.getDomains(GetDomainsArgs.builder()
.ids(defaultDomain.id())
.tags(Map.ofEntries(
Map.entry("key1", "value1"),
Map.entry("key2", "value2")
))
.build());
ctx.export("vodDomain", defaultDomains.applyValue(getDomainsResult -> getDomainsResult).applyValue(defaultDomains -> defaultDomains.applyValue(getDomainsResult -> getDomainsResult.domains()[0])));
}
}
import pulumi
import pulumi_alicloud as alicloud
default_domain = alicloud.vod.Domain("defaultDomain",
domain_name="your_domain_name",
scope="domestic",
sources=[alicloud.vod.DomainSourceArgs(
source_type="domain",
source_content="your_source_content",
source_port="80",
)],
tags={
"key1": "value1",
"key2": "value2",
})
default_domains = alicloud.vod.get_domains_output(ids=[default_domain.id],
tags={
"key1": "value1",
"key2": "value2",
})
pulumi.export("vodDomain", default_domains.domains[0])
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const defaultDomain = new alicloud.vod.Domain("defaultDomain", {
domainName: "your_domain_name",
scope: "domestic",
sources: [{
sourceType: "domain",
sourceContent: "your_source_content",
sourcePort: "80",
}],
tags: {
key1: "value1",
key2: "value2",
},
});
const defaultDomains = alicloud.vod.getDomainsOutput({
ids: [defaultDomain.id],
tags: {
key1: "value1",
key2: "value2",
},
});
export const vodDomain = defaultDomains.apply(defaultDomains => defaultDomains.domains?.[0]);
resources:
defaultDomain:
type: alicloud:vod:Domain
properties:
domainName: your_domain_name
scope: domestic
sources:
- sourceType: domain
sourceContent: your_source_content
sourcePort: '80'
tags:
key1: value1
key2: value2
variables:
defaultDomains:
fn::invoke:
Function: alicloud:vod:getDomains
Arguments:
ids:
- ${defaultDomain.id}
tags:
key1: value1
key2: value2
outputs:
vodDomain: ${defaultDomains.domains[0]}
Using getDomains
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 getDomains(args: GetDomainsArgs, opts?: InvokeOptions): Promise<GetDomainsResult>
function getDomainsOutput(args: GetDomainsOutputArgs, opts?: InvokeOptions): Output<GetDomainsResult>
def get_domains(domain_search_type: Optional[str] = None,
ids: Optional[Sequence[str]] = None,
name_regex: Optional[str] = None,
output_file: Optional[str] = None,
status: Optional[str] = None,
tags: Optional[Mapping[str, Any]] = None,
opts: Optional[InvokeOptions] = None) -> GetDomainsResult
def get_domains_output(domain_search_type: Optional[pulumi.Input[str]] = None,
ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
name_regex: Optional[pulumi.Input[str]] = None,
output_file: Optional[pulumi.Input[str]] = None,
status: Optional[pulumi.Input[str]] = None,
tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetDomainsResult]
func GetDomains(ctx *Context, args *GetDomainsArgs, opts ...InvokeOption) (*GetDomainsResult, error)
func GetDomainsOutput(ctx *Context, args *GetDomainsOutputArgs, opts ...InvokeOption) GetDomainsResultOutput
> Note: This function is named GetDomains
in the Go SDK.
public static class GetDomains
{
public static Task<GetDomainsResult> InvokeAsync(GetDomainsArgs args, InvokeOptions? opts = null)
public static Output<GetDomainsResult> Invoke(GetDomainsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetDomainsResult> getDomains(GetDomainsArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: alicloud:vod/getDomains:getDomains
arguments:
# arguments dictionary
The following arguments are supported:
- Domain
Search stringType The search method. Valid values:
- Ids List<string>
A list of Domain IDs. Its element value is same as Domain Name.
- Name
Regex string A regex string to filter results by Domain name.
- Output
File string File name where to save data source results (after running
pulumi preview
).- Status string
The status of the resource.
- Dictionary<string, object>
A mapping of tags to assign to the resource.
- Domain
Search stringType The search method. Valid values:
- Ids []string
A list of Domain IDs. Its element value is same as Domain Name.
- Name
Regex string A regex string to filter results by Domain name.
- Output
File string File name where to save data source results (after running
pulumi preview
).- Status string
The status of the resource.
- map[string]interface{}
A mapping of tags to assign to the resource.
- domain
Search StringType The search method. Valid values:
- ids List<String>
A list of Domain IDs. Its element value is same as Domain Name.
- name
Regex String A regex string to filter results by Domain name.
- output
File String File name where to save data source results (after running
pulumi preview
).- status String
The status of the resource.
- Map<String,Object>
A mapping of tags to assign to the resource.
- domain
Search stringType The search method. Valid values:
- ids string[]
A list of Domain IDs. Its element value is same as Domain Name.
- name
Regex string A regex string to filter results by Domain name.
- output
File string File name where to save data source results (after running
pulumi preview
).- status string
The status of the resource.
- {[key: string]: any}
A mapping of tags to assign to the resource.
- domain_
search_ strtype The search method. Valid values:
- ids Sequence[str]
A list of Domain IDs. Its element value is same as Domain Name.
- name_
regex str A regex string to filter results by Domain name.
- output_
file str File name where to save data source results (after running
pulumi preview
).- status str
The status of the resource.
- Mapping[str, Any]
A mapping of tags to assign to the resource.
- domain
Search StringType The search method. Valid values:
- ids List<String>
A list of Domain IDs. Its element value is same as Domain Name.
- name
Regex String A regex string to filter results by Domain name.
- output
File String File name where to save data source results (after running
pulumi preview
).- status String
The status of the resource.
- Map<Any>
A mapping of tags to assign to the resource.
getDomains Result
The following output properties are available:
- Domains
List<Pulumi.
Ali Cloud. Vod. Outputs. Get Domains Domain> - Id string
The provider-assigned unique ID for this managed resource.
- Ids List<string>
- Names List<string>
- Domain
Search stringType - Name
Regex string - Output
File string - Status string
- Dictionary<string, object>
- Domains
[]Get
Domains Domain - Id string
The provider-assigned unique ID for this managed resource.
- Ids []string
- Names []string
- Domain
Search stringType - Name
Regex string - Output
File string - Status string
- map[string]interface{}
- domains
List<Get
Domains Domain> - id String
The provider-assigned unique ID for this managed resource.
- ids List<String>
- names List<String>
- domain
Search StringType - name
Regex String - output
File String - status String
- Map<String,Object>
- domains
Get
Domains Domain[] - id string
The provider-assigned unique ID for this managed resource.
- ids string[]
- names string[]
- domain
Search stringType - name
Regex string - output
File string - status string
- {[key: string]: any}
- domains
Sequence[Get
Domains Domain] - id str
The provider-assigned unique ID for this managed resource.
- ids Sequence[str]
- names Sequence[str]
- domain_
search_ strtype - name_
regex str - output_
file str - status str
- Mapping[str, Any]
- domains List<Property Map>
- id String
The provider-assigned unique ID for this managed resource.
- ids List<String>
- names List<String>
- domain
Search StringType - name
Regex String - output
File String - status String
- Map<Any>
Supporting Types
GetDomainsDomain
- Cname string
The CNAME that is assigned to the domain name for CDN. You must add a CNAME record in the system of your Domain Name System (DNS) service provider to map the domain name for CDN to the CNAME.
- Description string
The description of the domain name for CDN.
- Domain
Name string The domain name for CDN.
- Gmt
Created string The time when the domain name for CDN was added. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
- Gmt
Modified string The last time when the domain name for CDN was modified. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
- Id string
The ID of the Domain. Its value is same as Queue Name.
- Sand
Box string Indicates whether the domain name for CDN is in a sandbox environment.
- Sources
List<Pulumi.
Ali Cloud. Vod. Inputs. Get Domains Domain Source> The information about the address of the origin server. For more information about the Sources parameter, See the following
Block sources
.- Ssl
Protocol string Indicates whether the Secure Sockets Layer (SSL) certificate is enabled. Valid values:
on
,off
.- Status string
The status of the resource.
- Cname string
The CNAME that is assigned to the domain name for CDN. You must add a CNAME record in the system of your Domain Name System (DNS) service provider to map the domain name for CDN to the CNAME.
- Description string
The description of the domain name for CDN.
- Domain
Name string The domain name for CDN.
- Gmt
Created string The time when the domain name for CDN was added. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
- Gmt
Modified string The last time when the domain name for CDN was modified. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
- Id string
The ID of the Domain. Its value is same as Queue Name.
- Sand
Box string Indicates whether the domain name for CDN is in a sandbox environment.
- Sources
[]Get
Domains Domain Source The information about the address of the origin server. For more information about the Sources parameter, See the following
Block sources
.- Ssl
Protocol string Indicates whether the Secure Sockets Layer (SSL) certificate is enabled. Valid values:
on
,off
.- Status string
The status of the resource.
- cname String
The CNAME that is assigned to the domain name for CDN. You must add a CNAME record in the system of your Domain Name System (DNS) service provider to map the domain name for CDN to the CNAME.
- description String
The description of the domain name for CDN.
- domain
Name String The domain name for CDN.
- gmt
Created String The time when the domain name for CDN was added. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
- gmt
Modified String The last time when the domain name for CDN was modified. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
- id String
The ID of the Domain. Its value is same as Queue Name.
- sand
Box String Indicates whether the domain name for CDN is in a sandbox environment.
- sources
List<Get
Domains Domain Source> The information about the address of the origin server. For more information about the Sources parameter, See the following
Block sources
.- ssl
Protocol String Indicates whether the Secure Sockets Layer (SSL) certificate is enabled. Valid values:
on
,off
.- status String
The status of the resource.
- cname string
The CNAME that is assigned to the domain name for CDN. You must add a CNAME record in the system of your Domain Name System (DNS) service provider to map the domain name for CDN to the CNAME.
- description string
The description of the domain name for CDN.
- domain
Name string The domain name for CDN.
- gmt
Created string The time when the domain name for CDN was added. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
- gmt
Modified string The last time when the domain name for CDN was modified. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
- id string
The ID of the Domain. Its value is same as Queue Name.
- sand
Box string Indicates whether the domain name for CDN is in a sandbox environment.
- sources
Get
Domains Domain Source[] The information about the address of the origin server. For more information about the Sources parameter, See the following
Block sources
.- ssl
Protocol string Indicates whether the Secure Sockets Layer (SSL) certificate is enabled. Valid values:
on
,off
.- status string
The status of the resource.
- cname str
The CNAME that is assigned to the domain name for CDN. You must add a CNAME record in the system of your Domain Name System (DNS) service provider to map the domain name for CDN to the CNAME.
- description str
The description of the domain name for CDN.
- domain_
name str The domain name for CDN.
- gmt_
created str The time when the domain name for CDN was added. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
- gmt_
modified str The last time when the domain name for CDN was modified. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
- id str
The ID of the Domain. Its value is same as Queue Name.
- sand_
box str Indicates whether the domain name for CDN is in a sandbox environment.
- sources
Sequence[Get
Domains Domain Source] The information about the address of the origin server. For more information about the Sources parameter, See the following
Block sources
.- ssl_
protocol str Indicates whether the Secure Sockets Layer (SSL) certificate is enabled. Valid values:
on
,off
.- status str
The status of the resource.
- cname String
The CNAME that is assigned to the domain name for CDN. You must add a CNAME record in the system of your Domain Name System (DNS) service provider to map the domain name for CDN to the CNAME.
- description String
The description of the domain name for CDN.
- domain
Name String The domain name for CDN.
- gmt
Created String The time when the domain name for CDN was added. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
- gmt
Modified String The last time when the domain name for CDN was modified. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
- id String
The ID of the Domain. Its value is same as Queue Name.
- sand
Box String Indicates whether the domain name for CDN is in a sandbox environment.
- sources List<Property Map>
The information about the address of the origin server. For more information about the Sources parameter, See the following
Block sources
.- ssl
Protocol String Indicates whether the Secure Sockets Layer (SSL) certificate is enabled. Valid values:
on
,off
.- status String
The status of the resource.
GetDomainsDomainSource
- Source
Content string - Source
Port string - Source
Priority string - Source
Type string
- Source
Content string - Source
Port string - Source
Priority string - Source
Type string
- source
Content String - source
Port String - source
Priority String - source
Type String
- source
Content string - source
Port string - source
Priority string - source
Type string
- source_
content str - source_
port str - source_
priority str - source_
type str
- source
Content String - source
Port String - source
Priority String - source
Type String
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
alicloud
Terraform Provider.