pulumi-linode 5.2.0a1752905257__py3-none-any.whl → 5.2.0a1753397983__py3-none-any.whl
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.
Potentially problematic release.
This version of pulumi-linode might be problematic. Click here for more details.
- pulumi_linode/__init__.py +1 -1
- pulumi_linode/_inputs.py +5169 -5170
- pulumi_linode/account_settings.py +70 -71
- pulumi_linode/config/__init__.py +1 -1
- pulumi_linode/config/__init__.pyi +1 -2
- pulumi_linode/config/vars.py +21 -22
- pulumi_linode/database_access_controls.py +52 -53
- pulumi_linode/database_mysql.py +247 -248
- pulumi_linode/database_mysql_v2.py +782 -783
- pulumi_linode/database_postgresql.py +273 -274
- pulumi_linode/database_postgresql_v2.py +1105 -1106
- pulumi_linode/domain.py +222 -223
- pulumi_linode/domain_record.py +188 -189
- pulumi_linode/firewall.py +155 -156
- pulumi_linode/firewall_device.py +70 -71
- pulumi_linode/get_account.py +33 -34
- pulumi_linode/get_account_availabilities.py +5 -6
- pulumi_linode/get_account_availability.py +13 -14
- pulumi_linode/get_account_login.py +17 -18
- pulumi_linode/get_account_logins.py +5 -6
- pulumi_linode/get_account_settings.py +13 -14
- pulumi_linode/get_child_account.py +37 -38
- pulumi_linode/get_child_accounts.py +5 -6
- pulumi_linode/get_database_backups.py +35 -36
- pulumi_linode/get_database_engines.py +23 -24
- pulumi_linode/get_database_mysql.py +52 -53
- pulumi_linode/get_database_mysql_backups.py +29 -30
- pulumi_linode/get_database_mysql_config.py +5 -6
- pulumi_linode/get_database_mysql_v2.py +115 -116
- pulumi_linode/get_database_postgresql.py +56 -57
- pulumi_linode/get_database_postgresql_config.py +7 -8
- pulumi_linode/get_database_postgresql_v2.py +153 -154
- pulumi_linode/get_databases.py +17 -18
- pulumi_linode/get_domain.py +37 -38
- pulumi_linode/get_domain_record.py +37 -38
- pulumi_linode/get_domain_zonefile.py +11 -12
- pulumi_linode/get_domains.py +17 -18
- pulumi_linode/get_firewall.py +30 -31
- pulumi_linode/get_firewalls.py +17 -18
- pulumi_linode/get_image.py +36 -37
- pulumi_linode/get_images.py +23 -24
- pulumi_linode/get_instance_backups.py +12 -13
- pulumi_linode/get_instance_networking.py +11 -12
- pulumi_linode/get_instance_type.py +30 -31
- pulumi_linode/get_instance_types.py +17 -18
- pulumi_linode/get_instances.py +17 -18
- pulumi_linode/get_ipv6_range.py +17 -18
- pulumi_linode/get_ipv6_ranges.py +5 -6
- pulumi_linode/get_kernel.py +23 -24
- pulumi_linode/get_kernels.py +17 -18
- pulumi_linode/get_linode_object_storage_bucket.py +33 -34
- pulumi_linode/get_lke_cluster.py +33 -34
- pulumi_linode/get_lke_clusters.py +17 -18
- pulumi_linode/get_lke_types.py +17 -18
- pulumi_linode/get_lke_version.py +13 -14
- pulumi_linode/get_lke_versions.py +10 -11
- pulumi_linode/get_nb_types.py +13 -14
- pulumi_linode/get_network_transfer_prices.py +17 -18
- pulumi_linode/get_networking_ip.py +28 -29
- pulumi_linode/get_networking_ips.py +17 -18
- pulumi_linode/get_node_balancer.py +29 -30
- pulumi_linode/get_node_balancer_config.py +48 -49
- pulumi_linode/get_node_balancer_node.py +29 -30
- pulumi_linode/get_nodebalancer_configs.py +23 -24
- pulumi_linode/get_nodebalancers.py +17 -18
- pulumi_linode/get_object_storage_cluster.py +15 -16
- pulumi_linode/get_object_storage_endpoints.py +17 -18
- pulumi_linode/get_object_storage_quota.py +22 -23
- pulumi_linode/get_object_storage_quotas.py +5 -6
- pulumi_linode/get_placement_group.py +19 -20
- pulumi_linode/get_placement_groups.py +13 -14
- pulumi_linode/get_profile.py +22 -23
- pulumi_linode/get_region.py +19 -20
- pulumi_linode/get_regions.py +5 -6
- pulumi_linode/get_ssh_key.py +17 -18
- pulumi_linode/get_sshkeys.py +17 -18
- pulumi_linode/get_stack_script.py +32 -33
- pulumi_linode/get_stack_scripts.py +23 -24
- pulumi_linode/get_user.py +35 -36
- pulumi_linode/get_users.py +17 -18
- pulumi_linode/get_vlans.py +17 -18
- pulumi_linode/get_volume.py +27 -28
- pulumi_linode/get_volume_types.py +17 -18
- pulumi_linode/get_volumes.py +17 -18
- pulumi_linode/get_vpc.py +17 -18
- pulumi_linode/get_vpc_ips.py +11 -12
- pulumi_linode/get_vpc_subnet.py +22 -23
- pulumi_linode/get_vpc_subnets.py +11 -12
- pulumi_linode/get_vpcs.py +5 -6
- pulumi_linode/image.py +292 -293
- pulumi_linode/instance.py +520 -521
- pulumi_linode/instance_config.py +166 -167
- pulumi_linode/instance_disk.py +210 -211
- pulumi_linode/instance_ip.py +125 -126
- pulumi_linode/instance_shared_ips.py +35 -36
- pulumi_linode/ipv6_range.py +88 -89
- pulumi_linode/lke_cluster.py +162 -163
- pulumi_linode/lke_node_pool.py +137 -138
- pulumi_linode/networking_ip.py +133 -134
- pulumi_linode/networking_ip_assignment.py +21 -22
- pulumi_linode/node_balancer.py +152 -153
- pulumi_linode/node_balancer_config.py +319 -320
- pulumi_linode/node_balancer_node.py +112 -113
- pulumi_linode/object_storage_bucket.py +195 -196
- pulumi_linode/object_storage_key.py +67 -68
- pulumi_linode/object_storage_object.py +350 -351
- pulumi_linode/outputs.py +5305 -5306
- pulumi_linode/placement_group.py +80 -81
- pulumi_linode/placement_group_assignment.py +48 -49
- pulumi_linode/provider.py +180 -181
- pulumi_linode/pulumi-plugin.json +1 -1
- pulumi_linode/rdns.py +55 -56
- pulumi_linode/reserved_ip_assignment.py +142 -143
- pulumi_linode/ssh_key.py +44 -45
- pulumi_linode/stack_script.py +159 -160
- pulumi_linode/token.py +70 -71
- pulumi_linode/user.py +112 -113
- pulumi_linode/volume.py +141 -142
- pulumi_linode/vpc.py +70 -71
- pulumi_linode/vpc_subnet.py +72 -73
- {pulumi_linode-5.2.0a1752905257.dist-info → pulumi_linode-5.2.0a1753397983.dist-info}/METADATA +1 -1
- pulumi_linode-5.2.0a1753397983.dist-info/RECORD +126 -0
- pulumi_linode-5.2.0a1752905257.dist-info/RECORD +0 -126
- {pulumi_linode-5.2.0a1752905257.dist-info → pulumi_linode-5.2.0a1753397983.dist-info}/WHEEL +0 -0
- {pulumi_linode-5.2.0a1752905257.dist-info → pulumi_linode-5.2.0a1753397983.dist-info}/top_level.txt +0 -0
pulumi_linode/get_databases.py
CHANGED
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
-
import builtins
|
|
6
|
-
import copy
|
|
5
|
+
import builtins as _builtins
|
|
7
6
|
import warnings
|
|
8
7
|
import sys
|
|
9
8
|
import pulumi
|
|
@@ -46,32 +45,32 @@ class GetDatabasesResult:
|
|
|
46
45
|
raise TypeError("Expected argument 'order_by' to be a str")
|
|
47
46
|
pulumi.set(__self__, "order_by", order_by)
|
|
48
47
|
|
|
49
|
-
@property
|
|
48
|
+
@_builtins.property
|
|
50
49
|
@pulumi.getter
|
|
51
50
|
def databases(self) -> Optional[Sequence['outputs.GetDatabasesDatabaseResult']]:
|
|
52
51
|
return pulumi.get(self, "databases")
|
|
53
52
|
|
|
54
|
-
@property
|
|
53
|
+
@_builtins.property
|
|
55
54
|
@pulumi.getter
|
|
56
55
|
def filters(self) -> Optional[Sequence['outputs.GetDatabasesFilterResult']]:
|
|
57
56
|
return pulumi.get(self, "filters")
|
|
58
57
|
|
|
59
|
-
@property
|
|
58
|
+
@_builtins.property
|
|
60
59
|
@pulumi.getter
|
|
61
|
-
def id(self) ->
|
|
60
|
+
def id(self) -> _builtins.str:
|
|
62
61
|
"""
|
|
63
62
|
The ID of the Managed Database.
|
|
64
63
|
"""
|
|
65
64
|
return pulumi.get(self, "id")
|
|
66
65
|
|
|
67
|
-
@property
|
|
66
|
+
@_builtins.property
|
|
68
67
|
@pulumi.getter
|
|
69
|
-
def order(self) -> Optional[
|
|
68
|
+
def order(self) -> Optional[_builtins.str]:
|
|
70
69
|
return pulumi.get(self, "order")
|
|
71
70
|
|
|
72
|
-
@property
|
|
71
|
+
@_builtins.property
|
|
73
72
|
@pulumi.getter(name="orderBy")
|
|
74
|
-
def order_by(self) -> Optional[
|
|
73
|
+
def order_by(self) -> Optional[_builtins.str]:
|
|
75
74
|
return pulumi.get(self, "order_by")
|
|
76
75
|
|
|
77
76
|
|
|
@@ -90,8 +89,8 @@ class AwaitableGetDatabasesResult(GetDatabasesResult):
|
|
|
90
89
|
|
|
91
90
|
def get_databases(databases: Optional[Sequence[Union['GetDatabasesDatabaseArgs', 'GetDatabasesDatabaseArgsDict']]] = None,
|
|
92
91
|
filters: Optional[Sequence[Union['GetDatabasesFilterArgs', 'GetDatabasesFilterArgsDict']]] = None,
|
|
93
|
-
order: Optional[
|
|
94
|
-
order_by: Optional[
|
|
92
|
+
order: Optional[_builtins.str] = None,
|
|
93
|
+
order_by: Optional[_builtins.str] = None,
|
|
95
94
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDatabasesResult:
|
|
96
95
|
"""
|
|
97
96
|
Provides information about Linode Managed Databases that match a set of filters.
|
|
@@ -123,8 +122,8 @@ def get_databases(databases: Optional[Sequence[Union['GetDatabasesDatabaseArgs',
|
|
|
123
122
|
```
|
|
124
123
|
|
|
125
124
|
|
|
126
|
-
:param
|
|
127
|
-
:param
|
|
125
|
+
:param _builtins.str order: The order in which results should be returned. (`asc`, `desc`; default `asc`)
|
|
126
|
+
:param _builtins.str order_by: The attribute to order the results by. (`version`)
|
|
128
127
|
"""
|
|
129
128
|
__args__ = dict()
|
|
130
129
|
__args__['databases'] = databases
|
|
@@ -142,8 +141,8 @@ def get_databases(databases: Optional[Sequence[Union['GetDatabasesDatabaseArgs',
|
|
|
142
141
|
order_by=pulumi.get(__ret__, 'order_by'))
|
|
143
142
|
def get_databases_output(databases: Optional[pulumi.Input[Optional[Sequence[Union['GetDatabasesDatabaseArgs', 'GetDatabasesDatabaseArgsDict']]]]] = None,
|
|
144
143
|
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetDatabasesFilterArgs', 'GetDatabasesFilterArgsDict']]]]] = None,
|
|
145
|
-
order: Optional[pulumi.Input[Optional[
|
|
146
|
-
order_by: Optional[pulumi.Input[Optional[
|
|
144
|
+
order: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
145
|
+
order_by: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
147
146
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetDatabasesResult]:
|
|
148
147
|
"""
|
|
149
148
|
Provides information about Linode Managed Databases that match a set of filters.
|
|
@@ -175,8 +174,8 @@ def get_databases_output(databases: Optional[pulumi.Input[Optional[Sequence[Unio
|
|
|
175
174
|
```
|
|
176
175
|
|
|
177
176
|
|
|
178
|
-
:param
|
|
179
|
-
:param
|
|
177
|
+
:param _builtins.str order: The order in which results should be returned. (`asc`, `desc`; default `asc`)
|
|
178
|
+
:param _builtins.str order_by: The attribute to order the results by. (`version`)
|
|
180
179
|
"""
|
|
181
180
|
__args__ = dict()
|
|
182
181
|
__args__['databases'] = databases
|
pulumi_linode/get_domain.py
CHANGED
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
-
import builtins
|
|
6
|
-
import copy
|
|
5
|
+
import builtins as _builtins
|
|
7
6
|
import warnings
|
|
8
7
|
import sys
|
|
9
8
|
import pulumi
|
|
@@ -71,113 +70,113 @@ class GetDomainResult:
|
|
|
71
70
|
raise TypeError("Expected argument 'type' to be a str")
|
|
72
71
|
pulumi.set(__self__, "type", type)
|
|
73
72
|
|
|
74
|
-
@property
|
|
73
|
+
@_builtins.property
|
|
75
74
|
@pulumi.getter(name="axfrIps")
|
|
76
|
-
def axfr_ips(self) -> Sequence[
|
|
75
|
+
def axfr_ips(self) -> Sequence[_builtins.str]:
|
|
77
76
|
"""
|
|
78
77
|
The list of IPs that may perform a zone transfer for this Domain.
|
|
79
78
|
"""
|
|
80
79
|
return pulumi.get(self, "axfr_ips")
|
|
81
80
|
|
|
82
|
-
@property
|
|
81
|
+
@_builtins.property
|
|
83
82
|
@pulumi.getter
|
|
84
|
-
def description(self) ->
|
|
83
|
+
def description(self) -> _builtins.str:
|
|
85
84
|
"""
|
|
86
85
|
A description for this Domain.
|
|
87
86
|
"""
|
|
88
87
|
return pulumi.get(self, "description")
|
|
89
88
|
|
|
90
|
-
@property
|
|
89
|
+
@_builtins.property
|
|
91
90
|
@pulumi.getter
|
|
92
|
-
def domain(self) -> Optional[
|
|
91
|
+
def domain(self) -> Optional[_builtins.str]:
|
|
93
92
|
"""
|
|
94
93
|
The domain this Domain represents. These must be unique in our system; you cannot have two Domains representing the same domain
|
|
95
94
|
"""
|
|
96
95
|
return pulumi.get(self, "domain")
|
|
97
96
|
|
|
98
|
-
@property
|
|
97
|
+
@_builtins.property
|
|
99
98
|
@pulumi.getter(name="expireSec")
|
|
100
|
-
def expire_sec(self) ->
|
|
99
|
+
def expire_sec(self) -> _builtins.int:
|
|
101
100
|
"""
|
|
102
101
|
The amount of time in seconds that may pass before this Domain is no longer authoritative.
|
|
103
102
|
"""
|
|
104
103
|
return pulumi.get(self, "expire_sec")
|
|
105
104
|
|
|
106
|
-
@property
|
|
105
|
+
@_builtins.property
|
|
107
106
|
@pulumi.getter
|
|
108
|
-
def group(self) ->
|
|
107
|
+
def group(self) -> _builtins.str:
|
|
109
108
|
"""
|
|
110
109
|
The group this Domain belongs to.
|
|
111
110
|
"""
|
|
112
111
|
return pulumi.get(self, "group")
|
|
113
112
|
|
|
114
|
-
@property
|
|
113
|
+
@_builtins.property
|
|
115
114
|
@pulumi.getter
|
|
116
|
-
def id(self) -> Optional[
|
|
115
|
+
def id(self) -> Optional[_builtins.int]:
|
|
117
116
|
"""
|
|
118
117
|
The unique ID of this Domain.
|
|
119
118
|
"""
|
|
120
119
|
return pulumi.get(self, "id")
|
|
121
120
|
|
|
122
|
-
@property
|
|
121
|
+
@_builtins.property
|
|
123
122
|
@pulumi.getter(name="masterIps")
|
|
124
|
-
def master_ips(self) -> Sequence[
|
|
123
|
+
def master_ips(self) -> Sequence[_builtins.str]:
|
|
125
124
|
"""
|
|
126
125
|
The IP addresses representing the master DNS for this Domain.
|
|
127
126
|
"""
|
|
128
127
|
return pulumi.get(self, "master_ips")
|
|
129
128
|
|
|
130
|
-
@property
|
|
129
|
+
@_builtins.property
|
|
131
130
|
@pulumi.getter(name="refreshSec")
|
|
132
|
-
def refresh_sec(self) ->
|
|
131
|
+
def refresh_sec(self) -> _builtins.int:
|
|
133
132
|
"""
|
|
134
133
|
The amount of time in seconds before this Domain should be refreshed.
|
|
135
134
|
"""
|
|
136
135
|
return pulumi.get(self, "refresh_sec")
|
|
137
136
|
|
|
138
|
-
@property
|
|
137
|
+
@_builtins.property
|
|
139
138
|
@pulumi.getter(name="retrySec")
|
|
140
|
-
def retry_sec(self) ->
|
|
139
|
+
def retry_sec(self) -> _builtins.int:
|
|
141
140
|
"""
|
|
142
141
|
The interval, in seconds, at which a failed refresh should be retried.
|
|
143
142
|
"""
|
|
144
143
|
return pulumi.get(self, "retry_sec")
|
|
145
144
|
|
|
146
|
-
@property
|
|
145
|
+
@_builtins.property
|
|
147
146
|
@pulumi.getter(name="soaEmail")
|
|
148
|
-
def soa_email(self) ->
|
|
147
|
+
def soa_email(self) -> _builtins.str:
|
|
149
148
|
"""
|
|
150
149
|
Start of Authority email address.
|
|
151
150
|
"""
|
|
152
151
|
return pulumi.get(self, "soa_email")
|
|
153
152
|
|
|
154
|
-
@property
|
|
153
|
+
@_builtins.property
|
|
155
154
|
@pulumi.getter
|
|
156
|
-
def status(self) ->
|
|
155
|
+
def status(self) -> _builtins.str:
|
|
157
156
|
"""
|
|
158
157
|
Used to control whether this Domain is currently being rendered. (`disabled`, `active`)
|
|
159
158
|
"""
|
|
160
159
|
return pulumi.get(self, "status")
|
|
161
160
|
|
|
162
|
-
@property
|
|
161
|
+
@_builtins.property
|
|
163
162
|
@pulumi.getter
|
|
164
|
-
def tags(self) -> Sequence[
|
|
163
|
+
def tags(self) -> Sequence[_builtins.str]:
|
|
165
164
|
"""
|
|
166
165
|
An array of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
|
|
167
166
|
"""
|
|
168
167
|
return pulumi.get(self, "tags")
|
|
169
168
|
|
|
170
|
-
@property
|
|
169
|
+
@_builtins.property
|
|
171
170
|
@pulumi.getter(name="ttlSec")
|
|
172
|
-
def ttl_sec(self) ->
|
|
171
|
+
def ttl_sec(self) -> _builtins.int:
|
|
173
172
|
"""
|
|
174
173
|
'Time to Live'-the amount of time in seconds that this Domain's records may be cached by resolvers or other domain servers.
|
|
175
174
|
"""
|
|
176
175
|
return pulumi.get(self, "ttl_sec")
|
|
177
176
|
|
|
178
|
-
@property
|
|
177
|
+
@_builtins.property
|
|
179
178
|
@pulumi.getter
|
|
180
|
-
def type(self) ->
|
|
179
|
+
def type(self) -> _builtins.str:
|
|
181
180
|
"""
|
|
182
181
|
If this Domain represents the authoritative source of information for the domain it describes, or if it is a read-only copy of a master (also called a slave) (`master`, `slave`)
|
|
183
182
|
"""
|
|
@@ -206,8 +205,8 @@ class AwaitableGetDomainResult(GetDomainResult):
|
|
|
206
205
|
type=self.type)
|
|
207
206
|
|
|
208
207
|
|
|
209
|
-
def get_domain(domain: Optional[
|
|
210
|
-
id: Optional[
|
|
208
|
+
def get_domain(domain: Optional[_builtins.str] = None,
|
|
209
|
+
id: Optional[_builtins.int] = None,
|
|
211
210
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDomainResult:
|
|
212
211
|
"""
|
|
213
212
|
Provides information about a Linode domain.
|
|
@@ -226,8 +225,8 @@ def get_domain(domain: Optional[builtins.str] = None,
|
|
|
226
225
|
```
|
|
227
226
|
|
|
228
227
|
|
|
229
|
-
:param
|
|
230
|
-
:param
|
|
228
|
+
:param _builtins.str domain: The unique domain name of the Domain record to query.
|
|
229
|
+
:param _builtins.int id: The unique numeric ID of the Domain record to query.
|
|
231
230
|
"""
|
|
232
231
|
__args__ = dict()
|
|
233
232
|
__args__['domain'] = domain
|
|
@@ -250,8 +249,8 @@ def get_domain(domain: Optional[builtins.str] = None,
|
|
|
250
249
|
tags=pulumi.get(__ret__, 'tags'),
|
|
251
250
|
ttl_sec=pulumi.get(__ret__, 'ttl_sec'),
|
|
252
251
|
type=pulumi.get(__ret__, 'type'))
|
|
253
|
-
def get_domain_output(domain: Optional[pulumi.Input[Optional[
|
|
254
|
-
id: Optional[pulumi.Input[Optional[
|
|
252
|
+
def get_domain_output(domain: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
253
|
+
id: Optional[pulumi.Input[Optional[_builtins.int]]] = None,
|
|
255
254
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetDomainResult]:
|
|
256
255
|
"""
|
|
257
256
|
Provides information about a Linode domain.
|
|
@@ -270,8 +269,8 @@ def get_domain_output(domain: Optional[pulumi.Input[Optional[builtins.str]]] = N
|
|
|
270
269
|
```
|
|
271
270
|
|
|
272
271
|
|
|
273
|
-
:param
|
|
274
|
-
:param
|
|
272
|
+
:param _builtins.str domain: The unique domain name of the Domain record to query.
|
|
273
|
+
:param _builtins.int id: The unique numeric ID of the Domain record to query.
|
|
275
274
|
"""
|
|
276
275
|
__args__ = dict()
|
|
277
276
|
__args__['domain'] = domain
|
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
-
import builtins
|
|
6
|
-
import copy
|
|
5
|
+
import builtins as _builtins
|
|
7
6
|
import warnings
|
|
8
7
|
import sys
|
|
9
8
|
import pulumi
|
|
@@ -65,97 +64,97 @@ class GetDomainRecordResult:
|
|
|
65
64
|
raise TypeError("Expected argument 'weight' to be a int")
|
|
66
65
|
pulumi.set(__self__, "weight", weight)
|
|
67
66
|
|
|
68
|
-
@property
|
|
67
|
+
@_builtins.property
|
|
69
68
|
@pulumi.getter(name="domainId")
|
|
70
|
-
def domain_id(self) ->
|
|
69
|
+
def domain_id(self) -> _builtins.int:
|
|
71
70
|
"""
|
|
72
71
|
The associated domain's unique ID.
|
|
73
72
|
"""
|
|
74
73
|
return pulumi.get(self, "domain_id")
|
|
75
74
|
|
|
76
|
-
@property
|
|
75
|
+
@_builtins.property
|
|
77
76
|
@pulumi.getter
|
|
78
|
-
def id(self) -> Optional[
|
|
77
|
+
def id(self) -> Optional[_builtins.int]:
|
|
79
78
|
"""
|
|
80
79
|
The unique ID of the Domain Record.
|
|
81
80
|
"""
|
|
82
81
|
return pulumi.get(self, "id")
|
|
83
82
|
|
|
84
|
-
@property
|
|
83
|
+
@_builtins.property
|
|
85
84
|
@pulumi.getter
|
|
86
|
-
def name(self) -> Optional[
|
|
85
|
+
def name(self) -> Optional[_builtins.str]:
|
|
87
86
|
"""
|
|
88
87
|
The name of the Record.
|
|
89
88
|
"""
|
|
90
89
|
return pulumi.get(self, "name")
|
|
91
90
|
|
|
92
|
-
@property
|
|
91
|
+
@_builtins.property
|
|
93
92
|
@pulumi.getter
|
|
94
|
-
def port(self) ->
|
|
93
|
+
def port(self) -> _builtins.int:
|
|
95
94
|
"""
|
|
96
95
|
The port this Record points to.
|
|
97
96
|
"""
|
|
98
97
|
return pulumi.get(self, "port")
|
|
99
98
|
|
|
100
|
-
@property
|
|
99
|
+
@_builtins.property
|
|
101
100
|
@pulumi.getter
|
|
102
|
-
def priority(self) ->
|
|
101
|
+
def priority(self) -> _builtins.int:
|
|
103
102
|
"""
|
|
104
103
|
The priority of the target host. Lower values are preferred.
|
|
105
104
|
"""
|
|
106
105
|
return pulumi.get(self, "priority")
|
|
107
106
|
|
|
108
|
-
@property
|
|
107
|
+
@_builtins.property
|
|
109
108
|
@pulumi.getter
|
|
110
|
-
def protocol(self) ->
|
|
109
|
+
def protocol(self) -> _builtins.str:
|
|
111
110
|
"""
|
|
112
111
|
The protocol this Record's service communicates with. Only valid for SRV records.
|
|
113
112
|
"""
|
|
114
113
|
return pulumi.get(self, "protocol")
|
|
115
114
|
|
|
116
|
-
@property
|
|
115
|
+
@_builtins.property
|
|
117
116
|
@pulumi.getter
|
|
118
|
-
def service(self) ->
|
|
117
|
+
def service(self) -> _builtins.str:
|
|
119
118
|
"""
|
|
120
119
|
The service this Record identified. Only valid for SRV records.
|
|
121
120
|
"""
|
|
122
121
|
return pulumi.get(self, "service")
|
|
123
122
|
|
|
124
|
-
@property
|
|
123
|
+
@_builtins.property
|
|
125
124
|
@pulumi.getter
|
|
126
|
-
def tag(self) ->
|
|
125
|
+
def tag(self) -> _builtins.str:
|
|
127
126
|
"""
|
|
128
127
|
The tag portion of a CAA record.
|
|
129
128
|
"""
|
|
130
129
|
return pulumi.get(self, "tag")
|
|
131
130
|
|
|
132
|
-
@property
|
|
131
|
+
@_builtins.property
|
|
133
132
|
@pulumi.getter
|
|
134
|
-
def target(self) ->
|
|
133
|
+
def target(self) -> _builtins.str:
|
|
135
134
|
"""
|
|
136
135
|
The target for this Record. This field's actual usage depends on the type of record this represents. For A and AAAA records, this is the address the named Domain should resolve to.
|
|
137
136
|
"""
|
|
138
137
|
return pulumi.get(self, "target")
|
|
139
138
|
|
|
140
|
-
@property
|
|
139
|
+
@_builtins.property
|
|
141
140
|
@pulumi.getter(name="ttlSec")
|
|
142
|
-
def ttl_sec(self) ->
|
|
141
|
+
def ttl_sec(self) -> _builtins.int:
|
|
143
142
|
"""
|
|
144
143
|
The amount of time in seconds that this Domain's records may be cached by resolvers or other domain servers.
|
|
145
144
|
"""
|
|
146
145
|
return pulumi.get(self, "ttl_sec")
|
|
147
146
|
|
|
148
|
-
@property
|
|
147
|
+
@_builtins.property
|
|
149
148
|
@pulumi.getter
|
|
150
|
-
def type(self) ->
|
|
149
|
+
def type(self) -> _builtins.str:
|
|
151
150
|
"""
|
|
152
151
|
The type of Record this is in the DNS system. See all record types [here](https://techdocs.akamai.com/linode-api/reference/get-domain-record).
|
|
153
152
|
"""
|
|
154
153
|
return pulumi.get(self, "type")
|
|
155
154
|
|
|
156
|
-
@property
|
|
155
|
+
@_builtins.property
|
|
157
156
|
@pulumi.getter
|
|
158
|
-
def weight(self) ->
|
|
157
|
+
def weight(self) -> _builtins.int:
|
|
159
158
|
"""
|
|
160
159
|
The relative weight of this Record. Higher values are preferred.
|
|
161
160
|
"""
|
|
@@ -182,9 +181,9 @@ class AwaitableGetDomainRecordResult(GetDomainRecordResult):
|
|
|
182
181
|
weight=self.weight)
|
|
183
182
|
|
|
184
183
|
|
|
185
|
-
def get_domain_record(domain_id: Optional[
|
|
186
|
-
id: Optional[
|
|
187
|
-
name: Optional[
|
|
184
|
+
def get_domain_record(domain_id: Optional[_builtins.int] = None,
|
|
185
|
+
id: Optional[_builtins.int] = None,
|
|
186
|
+
name: Optional[_builtins.str] = None,
|
|
188
187
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDomainRecordResult:
|
|
189
188
|
"""
|
|
190
189
|
Provides information about a Linode Domain Record.
|
|
@@ -205,9 +204,9 @@ def get_domain_record(domain_id: Optional[builtins.int] = None,
|
|
|
205
204
|
```
|
|
206
205
|
|
|
207
206
|
|
|
208
|
-
:param
|
|
209
|
-
:param
|
|
210
|
-
:param
|
|
207
|
+
:param _builtins.int domain_id: The associated domain's unique ID.
|
|
208
|
+
:param _builtins.int id: The unique ID of the Domain Record.
|
|
209
|
+
:param _builtins.str name: The name of the Record.
|
|
211
210
|
"""
|
|
212
211
|
__args__ = dict()
|
|
213
212
|
__args__['domainId'] = domain_id
|
|
@@ -229,9 +228,9 @@ def get_domain_record(domain_id: Optional[builtins.int] = None,
|
|
|
229
228
|
ttl_sec=pulumi.get(__ret__, 'ttl_sec'),
|
|
230
229
|
type=pulumi.get(__ret__, 'type'),
|
|
231
230
|
weight=pulumi.get(__ret__, 'weight'))
|
|
232
|
-
def get_domain_record_output(domain_id: Optional[pulumi.Input[
|
|
233
|
-
id: Optional[pulumi.Input[Optional[
|
|
234
|
-
name: Optional[pulumi.Input[Optional[
|
|
231
|
+
def get_domain_record_output(domain_id: Optional[pulumi.Input[_builtins.int]] = None,
|
|
232
|
+
id: Optional[pulumi.Input[Optional[_builtins.int]]] = None,
|
|
233
|
+
name: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
235
234
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetDomainRecordResult]:
|
|
236
235
|
"""
|
|
237
236
|
Provides information about a Linode Domain Record.
|
|
@@ -252,9 +251,9 @@ def get_domain_record_output(domain_id: Optional[pulumi.Input[builtins.int]] = N
|
|
|
252
251
|
```
|
|
253
252
|
|
|
254
253
|
|
|
255
|
-
:param
|
|
256
|
-
:param
|
|
257
|
-
:param
|
|
254
|
+
:param _builtins.int domain_id: The associated domain's unique ID.
|
|
255
|
+
:param _builtins.int id: The unique ID of the Domain Record.
|
|
256
|
+
:param _builtins.str name: The name of the Record.
|
|
258
257
|
"""
|
|
259
258
|
__args__ = dict()
|
|
260
259
|
__args__['domainId'] = domain_id
|
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
-
import builtins
|
|
6
|
-
import copy
|
|
5
|
+
import builtins as _builtins
|
|
7
6
|
import warnings
|
|
8
7
|
import sys
|
|
9
8
|
import pulumi
|
|
@@ -38,22 +37,22 @@ class GetDomainZonefileResult:
|
|
|
38
37
|
raise TypeError("Expected argument 'zone_files' to be a list")
|
|
39
38
|
pulumi.set(__self__, "zone_files", zone_files)
|
|
40
39
|
|
|
41
|
-
@property
|
|
40
|
+
@_builtins.property
|
|
42
41
|
@pulumi.getter(name="domainId")
|
|
43
|
-
def domain_id(self) ->
|
|
42
|
+
def domain_id(self) -> _builtins.int:
|
|
44
43
|
"""
|
|
45
44
|
The associated domain's unique ID.
|
|
46
45
|
"""
|
|
47
46
|
return pulumi.get(self, "domain_id")
|
|
48
47
|
|
|
49
|
-
@property
|
|
48
|
+
@_builtins.property
|
|
50
49
|
@pulumi.getter
|
|
51
|
-
def id(self) ->
|
|
50
|
+
def id(self) -> _builtins.str:
|
|
52
51
|
return pulumi.get(self, "id")
|
|
53
52
|
|
|
54
|
-
@property
|
|
53
|
+
@_builtins.property
|
|
55
54
|
@pulumi.getter(name="zoneFiles")
|
|
56
|
-
def zone_files(self) -> Sequence[
|
|
55
|
+
def zone_files(self) -> Sequence[_builtins.str]:
|
|
57
56
|
"""
|
|
58
57
|
Array of strings representing the Domain Zonefile.
|
|
59
58
|
"""
|
|
@@ -71,7 +70,7 @@ class AwaitableGetDomainZonefileResult(GetDomainZonefileResult):
|
|
|
71
70
|
zone_files=self.zone_files)
|
|
72
71
|
|
|
73
72
|
|
|
74
|
-
def get_domain_zonefile(domain_id: Optional[
|
|
73
|
+
def get_domain_zonefile(domain_id: Optional[_builtins.int] = None,
|
|
75
74
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDomainZonefileResult:
|
|
76
75
|
"""
|
|
77
76
|
Provides information about a Linode Domain Zonefile.
|
|
@@ -89,7 +88,7 @@ def get_domain_zonefile(domain_id: Optional[builtins.int] = None,
|
|
|
89
88
|
```
|
|
90
89
|
|
|
91
90
|
|
|
92
|
-
:param
|
|
91
|
+
:param _builtins.int domain_id: The associated domain's unique ID.
|
|
93
92
|
"""
|
|
94
93
|
__args__ = dict()
|
|
95
94
|
__args__['domainId'] = domain_id
|
|
@@ -100,7 +99,7 @@ def get_domain_zonefile(domain_id: Optional[builtins.int] = None,
|
|
|
100
99
|
domain_id=pulumi.get(__ret__, 'domain_id'),
|
|
101
100
|
id=pulumi.get(__ret__, 'id'),
|
|
102
101
|
zone_files=pulumi.get(__ret__, 'zone_files'))
|
|
103
|
-
def get_domain_zonefile_output(domain_id: Optional[pulumi.Input[
|
|
102
|
+
def get_domain_zonefile_output(domain_id: Optional[pulumi.Input[_builtins.int]] = None,
|
|
104
103
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetDomainZonefileResult]:
|
|
105
104
|
"""
|
|
106
105
|
Provides information about a Linode Domain Zonefile.
|
|
@@ -118,7 +117,7 @@ def get_domain_zonefile_output(domain_id: Optional[pulumi.Input[builtins.int]] =
|
|
|
118
117
|
```
|
|
119
118
|
|
|
120
119
|
|
|
121
|
-
:param
|
|
120
|
+
:param _builtins.int domain_id: The associated domain's unique ID.
|
|
122
121
|
"""
|
|
123
122
|
__args__ = dict()
|
|
124
123
|
__args__['domainId'] = domain_id
|
pulumi_linode/get_domains.py
CHANGED
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
-
import builtins
|
|
6
|
-
import copy
|
|
5
|
+
import builtins as _builtins
|
|
7
6
|
import warnings
|
|
8
7
|
import sys
|
|
9
8
|
import pulumi
|
|
@@ -46,32 +45,32 @@ class GetDomainsResult:
|
|
|
46
45
|
raise TypeError("Expected argument 'order_by' to be a str")
|
|
47
46
|
pulumi.set(__self__, "order_by", order_by)
|
|
48
47
|
|
|
49
|
-
@property
|
|
48
|
+
@_builtins.property
|
|
50
49
|
@pulumi.getter
|
|
51
50
|
def domains(self) -> Optional[Sequence['outputs.GetDomainsDomainResult']]:
|
|
52
51
|
return pulumi.get(self, "domains")
|
|
53
52
|
|
|
54
|
-
@property
|
|
53
|
+
@_builtins.property
|
|
55
54
|
@pulumi.getter
|
|
56
55
|
def filters(self) -> Optional[Sequence['outputs.GetDomainsFilterResult']]:
|
|
57
56
|
return pulumi.get(self, "filters")
|
|
58
57
|
|
|
59
|
-
@property
|
|
58
|
+
@_builtins.property
|
|
60
59
|
@pulumi.getter
|
|
61
|
-
def id(self) ->
|
|
60
|
+
def id(self) -> _builtins.str:
|
|
62
61
|
"""
|
|
63
62
|
The unique ID of this Domain.
|
|
64
63
|
"""
|
|
65
64
|
return pulumi.get(self, "id")
|
|
66
65
|
|
|
67
|
-
@property
|
|
66
|
+
@_builtins.property
|
|
68
67
|
@pulumi.getter
|
|
69
|
-
def order(self) -> Optional[
|
|
68
|
+
def order(self) -> Optional[_builtins.str]:
|
|
70
69
|
return pulumi.get(self, "order")
|
|
71
70
|
|
|
72
|
-
@property
|
|
71
|
+
@_builtins.property
|
|
73
72
|
@pulumi.getter(name="orderBy")
|
|
74
|
-
def order_by(self) -> Optional[
|
|
73
|
+
def order_by(self) -> Optional[_builtins.str]:
|
|
75
74
|
return pulumi.get(self, "order_by")
|
|
76
75
|
|
|
77
76
|
|
|
@@ -90,8 +89,8 @@ class AwaitableGetDomainsResult(GetDomainsResult):
|
|
|
90
89
|
|
|
91
90
|
def get_domains(domains: Optional[Sequence[Union['GetDomainsDomainArgs', 'GetDomainsDomainArgsDict']]] = None,
|
|
92
91
|
filters: Optional[Sequence[Union['GetDomainsFilterArgs', 'GetDomainsFilterArgsDict']]] = None,
|
|
93
|
-
order: Optional[
|
|
94
|
-
order_by: Optional[
|
|
92
|
+
order: Optional[_builtins.str] = None,
|
|
93
|
+
order_by: Optional[_builtins.str] = None,
|
|
95
94
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDomainsResult:
|
|
96
95
|
"""
|
|
97
96
|
Provides information about Linode Domains that match a set of filters.
|
|
@@ -141,8 +140,8 @@ def get_domains(domains: Optional[Sequence[Union['GetDomainsDomainArgs', 'GetDom
|
|
|
141
140
|
* `soa_email`
|
|
142
141
|
|
|
143
142
|
|
|
144
|
-
:param
|
|
145
|
-
:param
|
|
143
|
+
:param _builtins.str order: The order in which results should be returned. (`asc`, `desc`; default `asc`)
|
|
144
|
+
:param _builtins.str order_by: The attribute to order the results by. See the Filterable Fields section for a list of valid fields.
|
|
146
145
|
"""
|
|
147
146
|
__args__ = dict()
|
|
148
147
|
__args__['domains'] = domains
|
|
@@ -160,8 +159,8 @@ def get_domains(domains: Optional[Sequence[Union['GetDomainsDomainArgs', 'GetDom
|
|
|
160
159
|
order_by=pulumi.get(__ret__, 'order_by'))
|
|
161
160
|
def get_domains_output(domains: Optional[pulumi.Input[Optional[Sequence[Union['GetDomainsDomainArgs', 'GetDomainsDomainArgsDict']]]]] = None,
|
|
162
161
|
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetDomainsFilterArgs', 'GetDomainsFilterArgsDict']]]]] = None,
|
|
163
|
-
order: Optional[pulumi.Input[Optional[
|
|
164
|
-
order_by: Optional[pulumi.Input[Optional[
|
|
162
|
+
order: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
163
|
+
order_by: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
165
164
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetDomainsResult]:
|
|
166
165
|
"""
|
|
167
166
|
Provides information about Linode Domains that match a set of filters.
|
|
@@ -211,8 +210,8 @@ def get_domains_output(domains: Optional[pulumi.Input[Optional[Sequence[Union['G
|
|
|
211
210
|
* `soa_email`
|
|
212
211
|
|
|
213
212
|
|
|
214
|
-
:param
|
|
215
|
-
:param
|
|
213
|
+
:param _builtins.str order: The order in which results should be returned. (`asc`, `desc`; default `asc`)
|
|
214
|
+
:param _builtins.str order_by: The attribute to order the results by. See the Filterable Fields section for a list of valid fields.
|
|
216
215
|
"""
|
|
217
216
|
__args__ = dict()
|
|
218
217
|
__args__['domains'] = domains
|