pulumi-volcenginecc 0.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_volcenginecc-0.0.1/PKG-INFO +101 -0
- pulumi_volcenginecc-0.0.1/README.md +77 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/__init__.py +310 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/_inputs.py +149 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/_utilities.py +331 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/alb/__init__.py +13 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/alb/_inputs.py +60 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/alb/certificate.py +669 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/alb/get_certificate.py +278 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/alb/get_certificates.py +85 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/alb/outputs.py +62 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/ark/__init__.py +13 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/ark/_inputs.py +426 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/ark/endpoint.py +820 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/ark/get_endpoint.py +362 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/ark/get_endpoints.py +85 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/ark/outputs.py +550 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/clb/__init__.py +25 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/clb/_inputs.py +1784 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/clb/clb.py +1957 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/clb/get_clb.py +726 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/clb/get_clbs.py +85 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/clb/get_nlb.py +446 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/clb/get_nlb_listener.py +334 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/clb/get_nlb_listeners.py +85 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/clb/get_nlb_server_group.py +460 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/clb/get_nlb_server_groups.py +85 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/clb/get_nlbs.py +85 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/clb/get_server_group.py +250 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/clb/get_server_groups.py +85 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/clb/nlb.py +1110 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/clb/nlb_listener.py +909 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/clb/nlb_server_group.py +1288 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/clb/outputs.py +2331 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/clb/server_group.py +574 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/config/__init__.py +9 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/config/__init__.pyi +62 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/config/outputs.py +95 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/config/vars.py +84 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/cr/__init__.py +11 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/cr/get_repositories.py +85 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/cr/get_repository.py +179 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/cr/repository.py +439 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/ecs/__init__.py +25 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/ecs/_inputs.py +1063 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/ecs/command.py +800 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/ecs/get_command.py +320 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/ecs/get_commands.py +85 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/ecs/get_hpc_cluster.py +179 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/ecs/get_hpc_clusters.py +85 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/ecs/get_image.py +502 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/ecs/get_images.py +85 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/ecs/get_invocation.py +468 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/ecs/get_invocations.py +85 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/ecs/get_keypair.py +236 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/ecs/get_keypairs.py +85 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/ecs/hpc_cluster.py +434 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/ecs/image.py +1224 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/ecs/invocation.py +1216 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/ecs/keypair.py +580 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/ecs/outputs.py +1362 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/filenas/__init__.py +13 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/filenas/_inputs.py +184 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/filenas/get_instance.py +334 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/filenas/get_instances.py +85 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/filenas/instance.py +915 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/filenas/outputs.py +223 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/iam/__init__.py +25 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/iam/_inputs.py +1064 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/iam/accesskey.py +440 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/iam/get_accesskey.py +207 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/iam/get_accesskeys.py +85 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/iam/get_group.py +208 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/iam/get_groups.py +85 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/iam/get_policies.py +85 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/iam/get_policy.py +264 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/iam/get_role.py +244 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/iam/get_roles.py +85 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/iam/get_user.py +292 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/iam/get_users.py +85 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/iam/group.py +441 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/iam/outputs.py +1807 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/iam/policy.py +599 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/iam/role.py +625 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/iam/user.py +704 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/provider.py +346 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/pulumi-plugin.json +5 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/py.typed +0 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/storageebs/__init__.py +13 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/storageebs/_inputs.py +204 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/storageebs/get_volume.py +488 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/storageebs/get_volumes.py +85 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/storageebs/outputs.py +246 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/storageebs/volume.py +1208 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/tos/__init__.py +13 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/tos/_inputs.py +955 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/tos/bucket.py +663 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/tos/get_bucket.py +275 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/tos/get_buckets.py +85 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/tos/outputs.py +1290 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/transitrouter/__init__.py +13 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/transitrouter/_inputs.py +537 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/transitrouter/get_transit_router.py +292 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/transitrouter/get_transit_routers.py +85 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/transitrouter/outputs.py +666 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/transitrouter/transit_router.py +666 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/vmp/__init__.py +13 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/vmp/_inputs.py +458 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/vmp/get_workspace.py +334 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/vmp/get_workspaces.py +85 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/vmp/outputs.py +600 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/vmp/workspace.py +804 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/vpc/__init__.py +31 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/vpc/_inputs.py +1674 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/vpc/bandwidth_package.py +957 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/vpc/eip.py +1497 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/vpc/eni.py +1078 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/vpc/get_bandwidth_package.py +390 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/vpc/get_bandwidth_packages.py +85 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/vpc/get_eip.py +544 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/vpc/get_eips.py +85 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/vpc/get_eni.py +429 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/vpc/get_enis.py +85 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/vpc/get_route_table.py +320 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/vpc/get_route_tables.py +85 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/vpc/get_security_group.py +247 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/vpc/get_security_groups.py +85 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/vpc/get_subnet.py +345 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/vpc/get_subnets.py +85 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/vpc/get_vpc.py +404 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/vpc/get_vpcs.py +85 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/vpc/outputs.py +2331 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/vpc/route_table.py +771 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/vpc/security_group.py +550 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/vpc/subnet.py +829 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc/vpc/vpc.py +1041 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc.egg-info/PKG-INFO +101 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc.egg-info/SOURCES.txt +142 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc.egg-info/dependency_links.txt +1 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc.egg-info/not-zip-safe +1 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc.egg-info/requires.txt +6 -0
- pulumi_volcenginecc-0.0.1/pulumi_volcenginecc.egg-info/top_level.txt +1 -0
- pulumi_volcenginecc-0.0.1/setup.cfg +4 -0
- pulumi_volcenginecc-0.0.1/setup.py +46 -0
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pulumi_volcenginecc
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: A Pulumi package to safely use randomness in Pulumi programs.
|
|
5
|
+
Home-page: https://github.com/volcengine/pulumi-volcenginecc
|
|
6
|
+
License: MPL-2.0
|
|
7
|
+
Project-URL: Repository, https://github.com/volcengine/pulumi-volcenginecc
|
|
8
|
+
Keywords: volcengine volcenginecc category/cloud
|
|
9
|
+
Requires-Python: >=3.9
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
Requires-Dist: parver>=0.2.1
|
|
12
|
+
Requires-Dist: pulumi<4.0.0,>=3.165.0
|
|
13
|
+
Requires-Dist: semver>=2.8.1
|
|
14
|
+
Requires-Dist: typing-extensions<5,>=4.11; python_version < "3.11"
|
|
15
|
+
Dynamic: description
|
|
16
|
+
Dynamic: description-content-type
|
|
17
|
+
Dynamic: home-page
|
|
18
|
+
Dynamic: keywords
|
|
19
|
+
Dynamic: license
|
|
20
|
+
Dynamic: project-url
|
|
21
|
+
Dynamic: requires-dist
|
|
22
|
+
Dynamic: requires-python
|
|
23
|
+
Dynamic: summary
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
# Volcenginecc Resource Provider
|
|
27
|
+
|
|
28
|
+
The Volcenginecc resource provider for Pulumi lets you use volcengine resources in your cloud programs. To use
|
|
29
|
+
this package, please [install the Pulumi CLI first](https://pulumi.io/).
|
|
30
|
+
|
|
31
|
+
## Installing
|
|
32
|
+
|
|
33
|
+
This package is available in many languages in the standard packaging formats.
|
|
34
|
+
|
|
35
|
+
### Node.js (Java/TypeScript)
|
|
36
|
+
|
|
37
|
+
To use from JavaScript or TypeScript in Node.js, install using either `npm`:
|
|
38
|
+
|
|
39
|
+
$ npm install @pulumi/pulumi-volcenginecc
|
|
40
|
+
|
|
41
|
+
or `yarn`:
|
|
42
|
+
|
|
43
|
+
$ yarn add @pulumi/pulumi-volcenginecc
|
|
44
|
+
|
|
45
|
+
### Python
|
|
46
|
+
|
|
47
|
+
To use from Python, install using `pip`:
|
|
48
|
+
|
|
49
|
+
$ pip install pulumi_volcenginecc
|
|
50
|
+
|
|
51
|
+
### Go
|
|
52
|
+
|
|
53
|
+
To use from Go, use `go get` to grab the latest version of the library
|
|
54
|
+
|
|
55
|
+
$ go get github.com/volcengine/pulumi-volcengine/sdk
|
|
56
|
+
|
|
57
|
+
### .NET
|
|
58
|
+
|
|
59
|
+
To use from .NET, install using `dotnet add package`:
|
|
60
|
+
|
|
61
|
+
$ dotnet add package Pulumi.Volcenginecc
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
## Configuration Reference
|
|
65
|
+
|
|
66
|
+
In addition to generic `provider` arguments
|
|
67
|
+
(e.g. `alias` and `version`), the following arguments are supported in the Volcenginecc
|
|
68
|
+
provider configuration:
|
|
69
|
+
|
|
70
|
+
### Optional
|
|
71
|
+
|
|
72
|
+
- `accessKey` (String) The Access Key for Volcengine Provider. It must be provided, but it can also be sourced from the `VOLCENGINE_ACCESS_KEY` environment variable
|
|
73
|
+
- `secretKey` (String) he Secret Key for Volcengine Provider. It must be provided, but it can also be sourced from the `VOLCENGINE_SECRET_KEY` environment variable
|
|
74
|
+
- `assumeRole` (Attributes) An `assume_role` block (documented below). Only one `assume_role` block may be in the configuration. (see [below for nested schema](#nestedatt--assume_role))
|
|
75
|
+
- `customerHeaders` (String) CUSTOMER HEADERS for Volcengine Provider. The customer_headers field uses commas (,) to separate multiple headers, and colons (:) to separate each header key from its corresponding value.
|
|
76
|
+
- `disableSsl` (Boolean) Disable SSL for Volcengine Provider
|
|
77
|
+
- `endpoints` (Attributes) An `endpoints` block (documented below). Only one `endpoints` block may be in the configuration. (see [below for nested schema](#nestedatt--endpoints))
|
|
78
|
+
- `proxyUrl` (String) PROXY URL for Volcengine Provider
|
|
79
|
+
- `region` (String) The Region for Volcengine Provider. It must be provided, but it can also be sourced from the `VOLCENGINE_REGION` environment variable
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
<a id="nestedatt--assume_role"></a>
|
|
83
|
+
|
|
84
|
+
### Nested Schema for `assume_role`
|
|
85
|
+
|
|
86
|
+
Required:
|
|
87
|
+
|
|
88
|
+
- `assumeRoleTrn` (String) he TRN of the role to assume.
|
|
89
|
+
- `durationSeconds` (Number) The duration of the session when making the AssumeRole call. Its value ranges from 900 to 43200(seconds), and default is 3600 seconds.
|
|
90
|
+
Optional:
|
|
91
|
+
|
|
92
|
+
- `policy` (String) A more restrictive policy when making the AssumeRole call
|
|
93
|
+
|
|
94
|
+
<a id="nestedatt--endpoints"></a>
|
|
95
|
+
|
|
96
|
+
### Nested Schema for `endpoints`
|
|
97
|
+
|
|
98
|
+
Optional:
|
|
99
|
+
|
|
100
|
+
- `cloudcontrolapi` (String) Use this to override the default Cloud Control API service endpoint URL
|
|
101
|
+
- `sts` (String) Use this to override the default STS service endpoint URL
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
|
|
2
|
+
# Volcenginecc Resource Provider
|
|
3
|
+
|
|
4
|
+
The Volcenginecc resource provider for Pulumi lets you use volcengine resources in your cloud programs. To use
|
|
5
|
+
this package, please [install the Pulumi CLI first](https://pulumi.io/).
|
|
6
|
+
|
|
7
|
+
## Installing
|
|
8
|
+
|
|
9
|
+
This package is available in many languages in the standard packaging formats.
|
|
10
|
+
|
|
11
|
+
### Node.js (Java/TypeScript)
|
|
12
|
+
|
|
13
|
+
To use from JavaScript or TypeScript in Node.js, install using either `npm`:
|
|
14
|
+
|
|
15
|
+
$ npm install @pulumi/pulumi-volcenginecc
|
|
16
|
+
|
|
17
|
+
or `yarn`:
|
|
18
|
+
|
|
19
|
+
$ yarn add @pulumi/pulumi-volcenginecc
|
|
20
|
+
|
|
21
|
+
### Python
|
|
22
|
+
|
|
23
|
+
To use from Python, install using `pip`:
|
|
24
|
+
|
|
25
|
+
$ pip install pulumi_volcenginecc
|
|
26
|
+
|
|
27
|
+
### Go
|
|
28
|
+
|
|
29
|
+
To use from Go, use `go get` to grab the latest version of the library
|
|
30
|
+
|
|
31
|
+
$ go get github.com/volcengine/pulumi-volcengine/sdk
|
|
32
|
+
|
|
33
|
+
### .NET
|
|
34
|
+
|
|
35
|
+
To use from .NET, install using `dotnet add package`:
|
|
36
|
+
|
|
37
|
+
$ dotnet add package Pulumi.Volcenginecc
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
## Configuration Reference
|
|
41
|
+
|
|
42
|
+
In addition to generic `provider` arguments
|
|
43
|
+
(e.g. `alias` and `version`), the following arguments are supported in the Volcenginecc
|
|
44
|
+
provider configuration:
|
|
45
|
+
|
|
46
|
+
### Optional
|
|
47
|
+
|
|
48
|
+
- `accessKey` (String) The Access Key for Volcengine Provider. It must be provided, but it can also be sourced from the `VOLCENGINE_ACCESS_KEY` environment variable
|
|
49
|
+
- `secretKey` (String) he Secret Key for Volcengine Provider. It must be provided, but it can also be sourced from the `VOLCENGINE_SECRET_KEY` environment variable
|
|
50
|
+
- `assumeRole` (Attributes) An `assume_role` block (documented below). Only one `assume_role` block may be in the configuration. (see [below for nested schema](#nestedatt--assume_role))
|
|
51
|
+
- `customerHeaders` (String) CUSTOMER HEADERS for Volcengine Provider. The customer_headers field uses commas (,) to separate multiple headers, and colons (:) to separate each header key from its corresponding value.
|
|
52
|
+
- `disableSsl` (Boolean) Disable SSL for Volcengine Provider
|
|
53
|
+
- `endpoints` (Attributes) An `endpoints` block (documented below). Only one `endpoints` block may be in the configuration. (see [below for nested schema](#nestedatt--endpoints))
|
|
54
|
+
- `proxyUrl` (String) PROXY URL for Volcengine Provider
|
|
55
|
+
- `region` (String) The Region for Volcengine Provider. It must be provided, but it can also be sourced from the `VOLCENGINE_REGION` environment variable
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
<a id="nestedatt--assume_role"></a>
|
|
59
|
+
|
|
60
|
+
### Nested Schema for `assume_role`
|
|
61
|
+
|
|
62
|
+
Required:
|
|
63
|
+
|
|
64
|
+
- `assumeRoleTrn` (String) he TRN of the role to assume.
|
|
65
|
+
- `durationSeconds` (Number) The duration of the session when making the AssumeRole call. Its value ranges from 900 to 43200(seconds), and default is 3600 seconds.
|
|
66
|
+
Optional:
|
|
67
|
+
|
|
68
|
+
- `policy` (String) A more restrictive policy when making the AssumeRole call
|
|
69
|
+
|
|
70
|
+
<a id="nestedatt--endpoints"></a>
|
|
71
|
+
|
|
72
|
+
### Nested Schema for `endpoints`
|
|
73
|
+
|
|
74
|
+
Optional:
|
|
75
|
+
|
|
76
|
+
- `cloudcontrolapi` (String) Use this to override the default Cloud Control API service endpoint URL
|
|
77
|
+
- `sts` (String) Use this to override the default STS service endpoint URL
|
|
@@ -0,0 +1,310 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import builtins
|
|
6
|
+
from . import _utilities
|
|
7
|
+
import typing
|
|
8
|
+
# Export this package's modules as members:
|
|
9
|
+
from .provider import *
|
|
10
|
+
from ._inputs import *
|
|
11
|
+
|
|
12
|
+
# Make subpackages available:
|
|
13
|
+
if typing.TYPE_CHECKING:
|
|
14
|
+
import pulumi_volcenginecc.alb as __alb
|
|
15
|
+
alb = __alb
|
|
16
|
+
import pulumi_volcenginecc.ark as __ark
|
|
17
|
+
ark = __ark
|
|
18
|
+
import pulumi_volcenginecc.clb as __clb
|
|
19
|
+
clb = __clb
|
|
20
|
+
import pulumi_volcenginecc.config as __config
|
|
21
|
+
config = __config
|
|
22
|
+
import pulumi_volcenginecc.cr as __cr
|
|
23
|
+
cr = __cr
|
|
24
|
+
import pulumi_volcenginecc.ecs as __ecs
|
|
25
|
+
ecs = __ecs
|
|
26
|
+
import pulumi_volcenginecc.filenas as __filenas
|
|
27
|
+
filenas = __filenas
|
|
28
|
+
import pulumi_volcenginecc.iam as __iam
|
|
29
|
+
iam = __iam
|
|
30
|
+
import pulumi_volcenginecc.storageebs as __storageebs
|
|
31
|
+
storageebs = __storageebs
|
|
32
|
+
import pulumi_volcenginecc.tos as __tos
|
|
33
|
+
tos = __tos
|
|
34
|
+
import pulumi_volcenginecc.transitrouter as __transitrouter
|
|
35
|
+
transitrouter = __transitrouter
|
|
36
|
+
import pulumi_volcenginecc.vmp as __vmp
|
|
37
|
+
vmp = __vmp
|
|
38
|
+
import pulumi_volcenginecc.vpc as __vpc
|
|
39
|
+
vpc = __vpc
|
|
40
|
+
else:
|
|
41
|
+
alb = _utilities.lazy_import('pulumi_volcenginecc.alb')
|
|
42
|
+
ark = _utilities.lazy_import('pulumi_volcenginecc.ark')
|
|
43
|
+
clb = _utilities.lazy_import('pulumi_volcenginecc.clb')
|
|
44
|
+
config = _utilities.lazy_import('pulumi_volcenginecc.config')
|
|
45
|
+
cr = _utilities.lazy_import('pulumi_volcenginecc.cr')
|
|
46
|
+
ecs = _utilities.lazy_import('pulumi_volcenginecc.ecs')
|
|
47
|
+
filenas = _utilities.lazy_import('pulumi_volcenginecc.filenas')
|
|
48
|
+
iam = _utilities.lazy_import('pulumi_volcenginecc.iam')
|
|
49
|
+
storageebs = _utilities.lazy_import('pulumi_volcenginecc.storageebs')
|
|
50
|
+
tos = _utilities.lazy_import('pulumi_volcenginecc.tos')
|
|
51
|
+
transitrouter = _utilities.lazy_import('pulumi_volcenginecc.transitrouter')
|
|
52
|
+
vmp = _utilities.lazy_import('pulumi_volcenginecc.vmp')
|
|
53
|
+
vpc = _utilities.lazy_import('pulumi_volcenginecc.vpc')
|
|
54
|
+
|
|
55
|
+
_utilities.register(
|
|
56
|
+
resource_modules="""
|
|
57
|
+
[
|
|
58
|
+
{
|
|
59
|
+
"pkg": "volcenginecc",
|
|
60
|
+
"mod": "alb/certificate",
|
|
61
|
+
"fqn": "pulumi_volcenginecc.alb",
|
|
62
|
+
"classes": {
|
|
63
|
+
"volcenginecc:alb/certificate:Certificate": "Certificate"
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"pkg": "volcenginecc",
|
|
68
|
+
"mod": "ark/endpoint",
|
|
69
|
+
"fqn": "pulumi_volcenginecc.ark",
|
|
70
|
+
"classes": {
|
|
71
|
+
"volcenginecc:ark/endpoint:Endpoint": "Endpoint"
|
|
72
|
+
}
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"pkg": "volcenginecc",
|
|
76
|
+
"mod": "clb/clb",
|
|
77
|
+
"fqn": "pulumi_volcenginecc.clb",
|
|
78
|
+
"classes": {
|
|
79
|
+
"volcenginecc:clb/clb:Clb": "Clb"
|
|
80
|
+
}
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"pkg": "volcenginecc",
|
|
84
|
+
"mod": "clb/nlb",
|
|
85
|
+
"fqn": "pulumi_volcenginecc.clb",
|
|
86
|
+
"classes": {
|
|
87
|
+
"volcenginecc:clb/nlb:Nlb": "Nlb"
|
|
88
|
+
}
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"pkg": "volcenginecc",
|
|
92
|
+
"mod": "clb/nlbListener",
|
|
93
|
+
"fqn": "pulumi_volcenginecc.clb",
|
|
94
|
+
"classes": {
|
|
95
|
+
"volcenginecc:clb/nlbListener:NlbListener": "NlbListener"
|
|
96
|
+
}
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"pkg": "volcenginecc",
|
|
100
|
+
"mod": "clb/nlbServerGroup",
|
|
101
|
+
"fqn": "pulumi_volcenginecc.clb",
|
|
102
|
+
"classes": {
|
|
103
|
+
"volcenginecc:clb/nlbServerGroup:NlbServerGroup": "NlbServerGroup"
|
|
104
|
+
}
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"pkg": "volcenginecc",
|
|
108
|
+
"mod": "clb/serverGroup",
|
|
109
|
+
"fqn": "pulumi_volcenginecc.clb",
|
|
110
|
+
"classes": {
|
|
111
|
+
"volcenginecc:clb/serverGroup:ServerGroup": "ServerGroup"
|
|
112
|
+
}
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"pkg": "volcenginecc",
|
|
116
|
+
"mod": "cr/repository",
|
|
117
|
+
"fqn": "pulumi_volcenginecc.cr",
|
|
118
|
+
"classes": {
|
|
119
|
+
"volcenginecc:cr/repository:Repository": "Repository"
|
|
120
|
+
}
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"pkg": "volcenginecc",
|
|
124
|
+
"mod": "ecs/command",
|
|
125
|
+
"fqn": "pulumi_volcenginecc.ecs",
|
|
126
|
+
"classes": {
|
|
127
|
+
"volcenginecc:ecs/command:Command": "Command"
|
|
128
|
+
}
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"pkg": "volcenginecc",
|
|
132
|
+
"mod": "ecs/hpcCluster",
|
|
133
|
+
"fqn": "pulumi_volcenginecc.ecs",
|
|
134
|
+
"classes": {
|
|
135
|
+
"volcenginecc:ecs/hpcCluster:HpcCluster": "HpcCluster"
|
|
136
|
+
}
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
"pkg": "volcenginecc",
|
|
140
|
+
"mod": "ecs/image",
|
|
141
|
+
"fqn": "pulumi_volcenginecc.ecs",
|
|
142
|
+
"classes": {
|
|
143
|
+
"volcenginecc:ecs/image:Image": "Image"
|
|
144
|
+
}
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
"pkg": "volcenginecc",
|
|
148
|
+
"mod": "ecs/invocation",
|
|
149
|
+
"fqn": "pulumi_volcenginecc.ecs",
|
|
150
|
+
"classes": {
|
|
151
|
+
"volcenginecc:ecs/invocation:Invocation": "Invocation"
|
|
152
|
+
}
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
"pkg": "volcenginecc",
|
|
156
|
+
"mod": "ecs/keypair",
|
|
157
|
+
"fqn": "pulumi_volcenginecc.ecs",
|
|
158
|
+
"classes": {
|
|
159
|
+
"volcenginecc:ecs/keypair:Keypair": "Keypair"
|
|
160
|
+
}
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
"pkg": "volcenginecc",
|
|
164
|
+
"mod": "filenas/instance",
|
|
165
|
+
"fqn": "pulumi_volcenginecc.filenas",
|
|
166
|
+
"classes": {
|
|
167
|
+
"volcenginecc:filenas/instance:Instance": "Instance"
|
|
168
|
+
}
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"pkg": "volcenginecc",
|
|
172
|
+
"mod": "iam/accesskey",
|
|
173
|
+
"fqn": "pulumi_volcenginecc.iam",
|
|
174
|
+
"classes": {
|
|
175
|
+
"volcenginecc:iam/accesskey:Accesskey": "Accesskey"
|
|
176
|
+
}
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
"pkg": "volcenginecc",
|
|
180
|
+
"mod": "iam/group",
|
|
181
|
+
"fqn": "pulumi_volcenginecc.iam",
|
|
182
|
+
"classes": {
|
|
183
|
+
"volcenginecc:iam/group:Group": "Group"
|
|
184
|
+
}
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
"pkg": "volcenginecc",
|
|
188
|
+
"mod": "iam/policy",
|
|
189
|
+
"fqn": "pulumi_volcenginecc.iam",
|
|
190
|
+
"classes": {
|
|
191
|
+
"volcenginecc:iam/policy:Policy": "Policy"
|
|
192
|
+
}
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
"pkg": "volcenginecc",
|
|
196
|
+
"mod": "iam/role",
|
|
197
|
+
"fqn": "pulumi_volcenginecc.iam",
|
|
198
|
+
"classes": {
|
|
199
|
+
"volcenginecc:iam/role:Role": "Role"
|
|
200
|
+
}
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
"pkg": "volcenginecc",
|
|
204
|
+
"mod": "iam/user",
|
|
205
|
+
"fqn": "pulumi_volcenginecc.iam",
|
|
206
|
+
"classes": {
|
|
207
|
+
"volcenginecc:iam/user:User": "User"
|
|
208
|
+
}
|
|
209
|
+
},
|
|
210
|
+
{
|
|
211
|
+
"pkg": "volcenginecc",
|
|
212
|
+
"mod": "storageebs/volume",
|
|
213
|
+
"fqn": "pulumi_volcenginecc.storageebs",
|
|
214
|
+
"classes": {
|
|
215
|
+
"volcenginecc:storageebs/volume:Volume": "Volume"
|
|
216
|
+
}
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
"pkg": "volcenginecc",
|
|
220
|
+
"mod": "tos/bucket",
|
|
221
|
+
"fqn": "pulumi_volcenginecc.tos",
|
|
222
|
+
"classes": {
|
|
223
|
+
"volcenginecc:tos/bucket:Bucket": "Bucket"
|
|
224
|
+
}
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
"pkg": "volcenginecc",
|
|
228
|
+
"mod": "transitrouter/transitRouter",
|
|
229
|
+
"fqn": "pulumi_volcenginecc.transitrouter",
|
|
230
|
+
"classes": {
|
|
231
|
+
"volcenginecc:transitrouter/transitRouter:TransitRouter": "TransitRouter"
|
|
232
|
+
}
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
"pkg": "volcenginecc",
|
|
236
|
+
"mod": "vmp/workspace",
|
|
237
|
+
"fqn": "pulumi_volcenginecc.vmp",
|
|
238
|
+
"classes": {
|
|
239
|
+
"volcenginecc:vmp/workspace:Workspace": "Workspace"
|
|
240
|
+
}
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
"pkg": "volcenginecc",
|
|
244
|
+
"mod": "vpc/bandwidthPackage",
|
|
245
|
+
"fqn": "pulumi_volcenginecc.vpc",
|
|
246
|
+
"classes": {
|
|
247
|
+
"volcenginecc:vpc/bandwidthPackage:BandwidthPackage": "BandwidthPackage"
|
|
248
|
+
}
|
|
249
|
+
},
|
|
250
|
+
{
|
|
251
|
+
"pkg": "volcenginecc",
|
|
252
|
+
"mod": "vpc/eip",
|
|
253
|
+
"fqn": "pulumi_volcenginecc.vpc",
|
|
254
|
+
"classes": {
|
|
255
|
+
"volcenginecc:vpc/eip:Eip": "Eip"
|
|
256
|
+
}
|
|
257
|
+
},
|
|
258
|
+
{
|
|
259
|
+
"pkg": "volcenginecc",
|
|
260
|
+
"mod": "vpc/eni",
|
|
261
|
+
"fqn": "pulumi_volcenginecc.vpc",
|
|
262
|
+
"classes": {
|
|
263
|
+
"volcenginecc:vpc/eni:Eni": "Eni"
|
|
264
|
+
}
|
|
265
|
+
},
|
|
266
|
+
{
|
|
267
|
+
"pkg": "volcenginecc",
|
|
268
|
+
"mod": "vpc/routeTable",
|
|
269
|
+
"fqn": "pulumi_volcenginecc.vpc",
|
|
270
|
+
"classes": {
|
|
271
|
+
"volcenginecc:vpc/routeTable:RouteTable": "RouteTable"
|
|
272
|
+
}
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
"pkg": "volcenginecc",
|
|
276
|
+
"mod": "vpc/securityGroup",
|
|
277
|
+
"fqn": "pulumi_volcenginecc.vpc",
|
|
278
|
+
"classes": {
|
|
279
|
+
"volcenginecc:vpc/securityGroup:SecurityGroup": "SecurityGroup"
|
|
280
|
+
}
|
|
281
|
+
},
|
|
282
|
+
{
|
|
283
|
+
"pkg": "volcenginecc",
|
|
284
|
+
"mod": "vpc/subnet",
|
|
285
|
+
"fqn": "pulumi_volcenginecc.vpc",
|
|
286
|
+
"classes": {
|
|
287
|
+
"volcenginecc:vpc/subnet:Subnet": "Subnet"
|
|
288
|
+
}
|
|
289
|
+
},
|
|
290
|
+
{
|
|
291
|
+
"pkg": "volcenginecc",
|
|
292
|
+
"mod": "vpc/vpc",
|
|
293
|
+
"fqn": "pulumi_volcenginecc.vpc",
|
|
294
|
+
"classes": {
|
|
295
|
+
"volcenginecc:vpc/vpc:Vpc": "Vpc"
|
|
296
|
+
}
|
|
297
|
+
}
|
|
298
|
+
]
|
|
299
|
+
""",
|
|
300
|
+
resource_packages="""
|
|
301
|
+
[
|
|
302
|
+
{
|
|
303
|
+
"pkg": "volcenginecc",
|
|
304
|
+
"token": "pulumi:providers:volcenginecc",
|
|
305
|
+
"fqn": "pulumi_volcenginecc",
|
|
306
|
+
"class": "Provider"
|
|
307
|
+
}
|
|
308
|
+
]
|
|
309
|
+
"""
|
|
310
|
+
)
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import builtins
|
|
6
|
+
import copy
|
|
7
|
+
import warnings
|
|
8
|
+
import sys
|
|
9
|
+
import pulumi
|
|
10
|
+
import pulumi.runtime
|
|
11
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
12
|
+
if sys.version_info >= (3, 11):
|
|
13
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
14
|
+
else:
|
|
15
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
16
|
+
from . import _utilities
|
|
17
|
+
|
|
18
|
+
__all__ = [
|
|
19
|
+
'ProviderAssumeRoleArgs',
|
|
20
|
+
'ProviderAssumeRoleArgsDict',
|
|
21
|
+
'ProviderEndpointsArgs',
|
|
22
|
+
'ProviderEndpointsArgsDict',
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
MYPY = False
|
|
26
|
+
|
|
27
|
+
if not MYPY:
|
|
28
|
+
class ProviderAssumeRoleArgsDict(TypedDict):
|
|
29
|
+
assume_role_trn: pulumi.Input[builtins.str]
|
|
30
|
+
"""
|
|
31
|
+
he TRN of the role to assume.
|
|
32
|
+
"""
|
|
33
|
+
duration_seconds: NotRequired[pulumi.Input[builtins.int]]
|
|
34
|
+
"""
|
|
35
|
+
The duration of the session when making the AssumeRole call. Its value ranges from 900 to 43200(seconds), and default is 3600 seconds.
|
|
36
|
+
"""
|
|
37
|
+
policy: NotRequired[pulumi.Input[builtins.str]]
|
|
38
|
+
"""
|
|
39
|
+
A more restrictive policy when making the AssumeRole call
|
|
40
|
+
"""
|
|
41
|
+
elif False:
|
|
42
|
+
ProviderAssumeRoleArgsDict: TypeAlias = Mapping[str, Any]
|
|
43
|
+
|
|
44
|
+
@pulumi.input_type
|
|
45
|
+
class ProviderAssumeRoleArgs:
|
|
46
|
+
def __init__(__self__, *,
|
|
47
|
+
assume_role_trn: pulumi.Input[builtins.str],
|
|
48
|
+
duration_seconds: Optional[pulumi.Input[builtins.int]] = None,
|
|
49
|
+
policy: Optional[pulumi.Input[builtins.str]] = None):
|
|
50
|
+
"""
|
|
51
|
+
:param pulumi.Input[builtins.str] assume_role_trn: he TRN of the role to assume.
|
|
52
|
+
:param pulumi.Input[builtins.int] duration_seconds: The duration of the session when making the AssumeRole call. Its value ranges from 900 to 43200(seconds), and default is 3600 seconds.
|
|
53
|
+
:param pulumi.Input[builtins.str] policy: A more restrictive policy when making the AssumeRole call
|
|
54
|
+
"""
|
|
55
|
+
pulumi.set(__self__, "assume_role_trn", assume_role_trn)
|
|
56
|
+
if duration_seconds is not None:
|
|
57
|
+
pulumi.set(__self__, "duration_seconds", duration_seconds)
|
|
58
|
+
if policy is not None:
|
|
59
|
+
pulumi.set(__self__, "policy", policy)
|
|
60
|
+
|
|
61
|
+
@property
|
|
62
|
+
@pulumi.getter(name="assumeRoleTrn")
|
|
63
|
+
def assume_role_trn(self) -> pulumi.Input[builtins.str]:
|
|
64
|
+
"""
|
|
65
|
+
he TRN of the role to assume.
|
|
66
|
+
"""
|
|
67
|
+
return pulumi.get(self, "assume_role_trn")
|
|
68
|
+
|
|
69
|
+
@assume_role_trn.setter
|
|
70
|
+
def assume_role_trn(self, value: pulumi.Input[builtins.str]):
|
|
71
|
+
pulumi.set(self, "assume_role_trn", value)
|
|
72
|
+
|
|
73
|
+
@property
|
|
74
|
+
@pulumi.getter(name="durationSeconds")
|
|
75
|
+
def duration_seconds(self) -> Optional[pulumi.Input[builtins.int]]:
|
|
76
|
+
"""
|
|
77
|
+
The duration of the session when making the AssumeRole call. Its value ranges from 900 to 43200(seconds), and default is 3600 seconds.
|
|
78
|
+
"""
|
|
79
|
+
return pulumi.get(self, "duration_seconds")
|
|
80
|
+
|
|
81
|
+
@duration_seconds.setter
|
|
82
|
+
def duration_seconds(self, value: Optional[pulumi.Input[builtins.int]]):
|
|
83
|
+
pulumi.set(self, "duration_seconds", value)
|
|
84
|
+
|
|
85
|
+
@property
|
|
86
|
+
@pulumi.getter
|
|
87
|
+
def policy(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
88
|
+
"""
|
|
89
|
+
A more restrictive policy when making the AssumeRole call
|
|
90
|
+
"""
|
|
91
|
+
return pulumi.get(self, "policy")
|
|
92
|
+
|
|
93
|
+
@policy.setter
|
|
94
|
+
def policy(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
95
|
+
pulumi.set(self, "policy", value)
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
if not MYPY:
|
|
99
|
+
class ProviderEndpointsArgsDict(TypedDict):
|
|
100
|
+
cloudcontrolapi: NotRequired[pulumi.Input[builtins.str]]
|
|
101
|
+
"""
|
|
102
|
+
Use this to override the default Cloud Control API service endpoint URL
|
|
103
|
+
"""
|
|
104
|
+
sts: NotRequired[pulumi.Input[builtins.str]]
|
|
105
|
+
"""
|
|
106
|
+
Use this to override the default STS service endpoint URL
|
|
107
|
+
"""
|
|
108
|
+
elif False:
|
|
109
|
+
ProviderEndpointsArgsDict: TypeAlias = Mapping[str, Any]
|
|
110
|
+
|
|
111
|
+
@pulumi.input_type
|
|
112
|
+
class ProviderEndpointsArgs:
|
|
113
|
+
def __init__(__self__, *,
|
|
114
|
+
cloudcontrolapi: Optional[pulumi.Input[builtins.str]] = None,
|
|
115
|
+
sts: Optional[pulumi.Input[builtins.str]] = None):
|
|
116
|
+
"""
|
|
117
|
+
:param pulumi.Input[builtins.str] cloudcontrolapi: Use this to override the default Cloud Control API service endpoint URL
|
|
118
|
+
:param pulumi.Input[builtins.str] sts: Use this to override the default STS service endpoint URL
|
|
119
|
+
"""
|
|
120
|
+
if cloudcontrolapi is not None:
|
|
121
|
+
pulumi.set(__self__, "cloudcontrolapi", cloudcontrolapi)
|
|
122
|
+
if sts is not None:
|
|
123
|
+
pulumi.set(__self__, "sts", sts)
|
|
124
|
+
|
|
125
|
+
@property
|
|
126
|
+
@pulumi.getter
|
|
127
|
+
def cloudcontrolapi(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
128
|
+
"""
|
|
129
|
+
Use this to override the default Cloud Control API service endpoint URL
|
|
130
|
+
"""
|
|
131
|
+
return pulumi.get(self, "cloudcontrolapi")
|
|
132
|
+
|
|
133
|
+
@cloudcontrolapi.setter
|
|
134
|
+
def cloudcontrolapi(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
135
|
+
pulumi.set(self, "cloudcontrolapi", value)
|
|
136
|
+
|
|
137
|
+
@property
|
|
138
|
+
@pulumi.getter
|
|
139
|
+
def sts(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
140
|
+
"""
|
|
141
|
+
Use this to override the default STS service endpoint URL
|
|
142
|
+
"""
|
|
143
|
+
return pulumi.get(self, "sts")
|
|
144
|
+
|
|
145
|
+
@sts.setter
|
|
146
|
+
def sts(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
147
|
+
pulumi.set(self, "sts", value)
|
|
148
|
+
|
|
149
|
+
|