pulumi-consul 3.12.0a1713461993__py3-none-any.whl → 3.12.0a1713897703__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-consul might be problematic. Click here for more details.
- pulumi_consul/_inputs.py +22 -22
- pulumi_consul/acl_auth_method.py +0 -8
- pulumi_consul/acl_binding_rule.py +0 -4
- pulumi_consul/acl_policy.py +0 -4
- pulumi_consul/acl_role.py +7 -11
- pulumi_consul/acl_role_policy_attachment.py +0 -4
- pulumi_consul/acl_token.py +0 -4
- pulumi_consul/admin_partition.py +0 -4
- pulumi_consul/agent_service.py +0 -4
- pulumi_consul/autopilot_config.py +0 -4
- pulumi_consul/config_entry.py +0 -24
- pulumi_consul/config_entry_service_defaults.py +21 -21
- pulumi_consul/config_entry_service_intentions.py +21 -25
- pulumi_consul/config_entry_service_resolver.py +21 -25
- pulumi_consul/config_entry_service_router.py +21 -21
- pulumi_consul/config_entry_service_splitter.py +14 -18
- pulumi_consul/get_acl_auth_method.py +0 -4
- pulumi_consul/get_acl_policy.py +0 -4
- pulumi_consul/get_acl_role.py +2 -4
- pulumi_consul/get_acl_token.py +0 -4
- pulumi_consul/get_acl_token_secret_id.py +0 -4
- pulumi_consul/get_agent_config.py +0 -4
- pulumi_consul/get_autopilot_health.py +0 -4
- pulumi_consul/get_catalog_service.py +0 -8
- pulumi_consul/get_catalog_services.py +0 -4
- pulumi_consul/get_key_prefix.py +0 -8
- pulumi_consul/get_keys.py +0 -4
- pulumi_consul/get_network_area_members.py +0 -4
- pulumi_consul/get_network_segments.py +0 -4
- pulumi_consul/get_peering.py +0 -4
- pulumi_consul/get_peerings.py +0 -4
- pulumi_consul/get_service.py +0 -8
- pulumi_consul/get_services.py +0 -4
- pulumi_consul/intention.py +0 -8
- pulumi_consul/key_prefix.py +0 -4
- pulumi_consul/keys.py +0 -4
- pulumi_consul/license.py +0 -4
- pulumi_consul/namespace.py +0 -4
- pulumi_consul/network_area.py +0 -4
- pulumi_consul/node.py +0 -4
- pulumi_consul/outputs.py +22 -22
- pulumi_consul/peering.py +0 -4
- pulumi_consul/peering_token.py +0 -4
- pulumi_consul/prepared_query.py +7 -11
- pulumi_consul/service.py +7 -19
- {pulumi_consul-3.12.0a1713461993.dist-info → pulumi_consul-3.12.0a1713897703.dist-info}/METADATA +1 -1
- pulumi_consul-3.12.0a1713897703.dist-info/RECORD +70 -0
- pulumi_consul-3.12.0a1713461993.dist-info/RECORD +0 -70
- {pulumi_consul-3.12.0a1713461993.dist-info → pulumi_consul-3.12.0a1713897703.dist-info}/WHEEL +0 -0
- {pulumi_consul-3.12.0a1713461993.dist-info → pulumi_consul-3.12.0a1713897703.dist-info}/top_level.txt +0 -0
|
@@ -45,13 +45,13 @@ class ConfigEntryServiceDefaultsArgs:
|
|
|
45
45
|
:param pulumi.Input[int] local_connect_timeout_ms: Specifies the number of milliseconds allowed for establishing connections to the local application instance before timing out.
|
|
46
46
|
:param pulumi.Input[int] local_request_timeout_ms: Specifies the timeout for HTTP requests to the local application instance.
|
|
47
47
|
:param pulumi.Input[int] max_inbound_connections: Specifies the maximum number of concurrent inbound connections to each service instance.
|
|
48
|
-
:param pulumi.Input[Sequence[pulumi.Input['ConfigEntryServiceDefaultsMeshGatewayArgs']]] mesh_gateways: Specifies the default mesh gateway mode field for
|
|
48
|
+
:param pulumi.Input[Sequence[pulumi.Input['ConfigEntryServiceDefaultsMeshGatewayArgs']]] mesh_gateways: Specifies the default mesh gateway mode field for the service.
|
|
49
49
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] meta: Specifies a set of custom key-value pairs to add to the Consul KV store.
|
|
50
50
|
:param pulumi.Input[str] mode: Specifies a mode for how the service directs inbound and outbound traffic.
|
|
51
51
|
:param pulumi.Input[str] mutual_tls_mode: Controls whether mutual TLS is required for incoming connections to this service. This setting is only supported for services with transparent proxy enabled.
|
|
52
52
|
:param pulumi.Input[str] name: Specifies the name of the service you are setting the defaults for.
|
|
53
|
-
:param pulumi.Input[str] namespace: Specifies the namespace
|
|
54
|
-
:param pulumi.Input[str] partition: Specifies the name of the name of the Consul admin partition that the configuration entry applies to.
|
|
53
|
+
:param pulumi.Input[str] namespace: Specifies the Consul namespace that the configuration entry applies to.
|
|
54
|
+
:param pulumi.Input[str] partition: Specifies the name of the name of the Consul admin partition that the configuration entry applies to. Refer to Admin Partitions for additional information.
|
|
55
55
|
:param pulumi.Input[Sequence[pulumi.Input['ConfigEntryServiceDefaultsTransparentProxyArgs']]] transparent_proxies: Controls configurations specific to proxies in transparent mode. Refer to Transparent Proxy Mode for additional information.
|
|
56
56
|
:param pulumi.Input[Sequence[pulumi.Input['ConfigEntryServiceDefaultsUpstreamConfigArgs']]] upstream_configs: Controls default upstream connection settings and custom overrides for individual upstream services.
|
|
57
57
|
"""
|
|
@@ -202,7 +202,7 @@ class ConfigEntryServiceDefaultsArgs:
|
|
|
202
202
|
@pulumi.getter(name="meshGateways")
|
|
203
203
|
def mesh_gateways(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ConfigEntryServiceDefaultsMeshGatewayArgs']]]]:
|
|
204
204
|
"""
|
|
205
|
-
Specifies the default mesh gateway mode field for
|
|
205
|
+
Specifies the default mesh gateway mode field for the service.
|
|
206
206
|
"""
|
|
207
207
|
return pulumi.get(self, "mesh_gateways")
|
|
208
208
|
|
|
@@ -262,7 +262,7 @@ class ConfigEntryServiceDefaultsArgs:
|
|
|
262
262
|
@pulumi.getter
|
|
263
263
|
def namespace(self) -> Optional[pulumi.Input[str]]:
|
|
264
264
|
"""
|
|
265
|
-
Specifies the namespace
|
|
265
|
+
Specifies the Consul namespace that the configuration entry applies to.
|
|
266
266
|
"""
|
|
267
267
|
return pulumi.get(self, "namespace")
|
|
268
268
|
|
|
@@ -274,7 +274,7 @@ class ConfigEntryServiceDefaultsArgs:
|
|
|
274
274
|
@pulumi.getter
|
|
275
275
|
def partition(self) -> Optional[pulumi.Input[str]]:
|
|
276
276
|
"""
|
|
277
|
-
Specifies the name of the name of the Consul admin partition that the configuration entry applies to.
|
|
277
|
+
Specifies the name of the name of the Consul admin partition that the configuration entry applies to. Refer to Admin Partitions for additional information.
|
|
278
278
|
"""
|
|
279
279
|
return pulumi.get(self, "partition")
|
|
280
280
|
|
|
@@ -338,13 +338,13 @@ class _ConfigEntryServiceDefaultsState:
|
|
|
338
338
|
:param pulumi.Input[int] local_connect_timeout_ms: Specifies the number of milliseconds allowed for establishing connections to the local application instance before timing out.
|
|
339
339
|
:param pulumi.Input[int] local_request_timeout_ms: Specifies the timeout for HTTP requests to the local application instance.
|
|
340
340
|
:param pulumi.Input[int] max_inbound_connections: Specifies the maximum number of concurrent inbound connections to each service instance.
|
|
341
|
-
:param pulumi.Input[Sequence[pulumi.Input['ConfigEntryServiceDefaultsMeshGatewayArgs']]] mesh_gateways: Specifies the default mesh gateway mode field for
|
|
341
|
+
:param pulumi.Input[Sequence[pulumi.Input['ConfigEntryServiceDefaultsMeshGatewayArgs']]] mesh_gateways: Specifies the default mesh gateway mode field for the service.
|
|
342
342
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] meta: Specifies a set of custom key-value pairs to add to the Consul KV store.
|
|
343
343
|
:param pulumi.Input[str] mode: Specifies a mode for how the service directs inbound and outbound traffic.
|
|
344
344
|
:param pulumi.Input[str] mutual_tls_mode: Controls whether mutual TLS is required for incoming connections to this service. This setting is only supported for services with transparent proxy enabled.
|
|
345
345
|
:param pulumi.Input[str] name: Specifies the name of the service you are setting the defaults for.
|
|
346
|
-
:param pulumi.Input[str] namespace: Specifies the namespace
|
|
347
|
-
:param pulumi.Input[str] partition: Specifies the name of the name of the Consul admin partition that the configuration entry applies to.
|
|
346
|
+
:param pulumi.Input[str] namespace: Specifies the Consul namespace that the configuration entry applies to.
|
|
347
|
+
:param pulumi.Input[str] partition: Specifies the name of the name of the Consul admin partition that the configuration entry applies to. Refer to Admin Partitions for additional information.
|
|
348
348
|
:param pulumi.Input[str] protocol: Specifies the default protocol for the service.
|
|
349
349
|
:param pulumi.Input[Sequence[pulumi.Input['ConfigEntryServiceDefaultsTransparentProxyArgs']]] transparent_proxies: Controls configurations specific to proxies in transparent mode. Refer to Transparent Proxy Mode for additional information.
|
|
350
350
|
:param pulumi.Input[Sequence[pulumi.Input['ConfigEntryServiceDefaultsUpstreamConfigArgs']]] upstream_configs: Controls default upstream connection settings and custom overrides for individual upstream services.
|
|
@@ -486,7 +486,7 @@ class _ConfigEntryServiceDefaultsState:
|
|
|
486
486
|
@pulumi.getter(name="meshGateways")
|
|
487
487
|
def mesh_gateways(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ConfigEntryServiceDefaultsMeshGatewayArgs']]]]:
|
|
488
488
|
"""
|
|
489
|
-
Specifies the default mesh gateway mode field for
|
|
489
|
+
Specifies the default mesh gateway mode field for the service.
|
|
490
490
|
"""
|
|
491
491
|
return pulumi.get(self, "mesh_gateways")
|
|
492
492
|
|
|
@@ -546,7 +546,7 @@ class _ConfigEntryServiceDefaultsState:
|
|
|
546
546
|
@pulumi.getter
|
|
547
547
|
def namespace(self) -> Optional[pulumi.Input[str]]:
|
|
548
548
|
"""
|
|
549
|
-
Specifies the namespace
|
|
549
|
+
Specifies the Consul namespace that the configuration entry applies to.
|
|
550
550
|
"""
|
|
551
551
|
return pulumi.get(self, "namespace")
|
|
552
552
|
|
|
@@ -558,7 +558,7 @@ class _ConfigEntryServiceDefaultsState:
|
|
|
558
558
|
@pulumi.getter
|
|
559
559
|
def partition(self) -> Optional[pulumi.Input[str]]:
|
|
560
560
|
"""
|
|
561
|
-
Specifies the name of the name of the Consul admin partition that the configuration entry applies to.
|
|
561
|
+
Specifies the name of the name of the Consul admin partition that the configuration entry applies to. Refer to Admin Partitions for additional information.
|
|
562
562
|
"""
|
|
563
563
|
return pulumi.get(self, "partition")
|
|
564
564
|
|
|
@@ -640,13 +640,13 @@ class ConfigEntryServiceDefaults(pulumi.CustomResource):
|
|
|
640
640
|
:param pulumi.Input[int] local_connect_timeout_ms: Specifies the number of milliseconds allowed for establishing connections to the local application instance before timing out.
|
|
641
641
|
:param pulumi.Input[int] local_request_timeout_ms: Specifies the timeout for HTTP requests to the local application instance.
|
|
642
642
|
:param pulumi.Input[int] max_inbound_connections: Specifies the maximum number of concurrent inbound connections to each service instance.
|
|
643
|
-
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ConfigEntryServiceDefaultsMeshGatewayArgs']]]] mesh_gateways: Specifies the default mesh gateway mode field for
|
|
643
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ConfigEntryServiceDefaultsMeshGatewayArgs']]]] mesh_gateways: Specifies the default mesh gateway mode field for the service.
|
|
644
644
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] meta: Specifies a set of custom key-value pairs to add to the Consul KV store.
|
|
645
645
|
:param pulumi.Input[str] mode: Specifies a mode for how the service directs inbound and outbound traffic.
|
|
646
646
|
:param pulumi.Input[str] mutual_tls_mode: Controls whether mutual TLS is required for incoming connections to this service. This setting is only supported for services with transparent proxy enabled.
|
|
647
647
|
:param pulumi.Input[str] name: Specifies the name of the service you are setting the defaults for.
|
|
648
|
-
:param pulumi.Input[str] namespace: Specifies the namespace
|
|
649
|
-
:param pulumi.Input[str] partition: Specifies the name of the name of the Consul admin partition that the configuration entry applies to.
|
|
648
|
+
:param pulumi.Input[str] namespace: Specifies the Consul namespace that the configuration entry applies to.
|
|
649
|
+
:param pulumi.Input[str] partition: Specifies the name of the name of the Consul admin partition that the configuration entry applies to. Refer to Admin Partitions for additional information.
|
|
650
650
|
:param pulumi.Input[str] protocol: Specifies the default protocol for the service.
|
|
651
651
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ConfigEntryServiceDefaultsTransparentProxyArgs']]]] transparent_proxies: Controls configurations specific to proxies in transparent mode. Refer to Transparent Proxy Mode for additional information.
|
|
652
652
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ConfigEntryServiceDefaultsUpstreamConfigArgs']]]] upstream_configs: Controls default upstream connection settings and custom overrides for individual upstream services.
|
|
@@ -767,13 +767,13 @@ class ConfigEntryServiceDefaults(pulumi.CustomResource):
|
|
|
767
767
|
:param pulumi.Input[int] local_connect_timeout_ms: Specifies the number of milliseconds allowed for establishing connections to the local application instance before timing out.
|
|
768
768
|
:param pulumi.Input[int] local_request_timeout_ms: Specifies the timeout for HTTP requests to the local application instance.
|
|
769
769
|
:param pulumi.Input[int] max_inbound_connections: Specifies the maximum number of concurrent inbound connections to each service instance.
|
|
770
|
-
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ConfigEntryServiceDefaultsMeshGatewayArgs']]]] mesh_gateways: Specifies the default mesh gateway mode field for
|
|
770
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ConfigEntryServiceDefaultsMeshGatewayArgs']]]] mesh_gateways: Specifies the default mesh gateway mode field for the service.
|
|
771
771
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] meta: Specifies a set of custom key-value pairs to add to the Consul KV store.
|
|
772
772
|
:param pulumi.Input[str] mode: Specifies a mode for how the service directs inbound and outbound traffic.
|
|
773
773
|
:param pulumi.Input[str] mutual_tls_mode: Controls whether mutual TLS is required for incoming connections to this service. This setting is only supported for services with transparent proxy enabled.
|
|
774
774
|
:param pulumi.Input[str] name: Specifies the name of the service you are setting the defaults for.
|
|
775
|
-
:param pulumi.Input[str] namespace: Specifies the namespace
|
|
776
|
-
:param pulumi.Input[str] partition: Specifies the name of the name of the Consul admin partition that the configuration entry applies to.
|
|
775
|
+
:param pulumi.Input[str] namespace: Specifies the Consul namespace that the configuration entry applies to.
|
|
776
|
+
:param pulumi.Input[str] partition: Specifies the name of the name of the Consul admin partition that the configuration entry applies to. Refer to Admin Partitions for additional information.
|
|
777
777
|
:param pulumi.Input[str] protocol: Specifies the default protocol for the service.
|
|
778
778
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ConfigEntryServiceDefaultsTransparentProxyArgs']]]] transparent_proxies: Controls configurations specific to proxies in transparent mode. Refer to Transparent Proxy Mode for additional information.
|
|
779
779
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ConfigEntryServiceDefaultsUpstreamConfigArgs']]]] upstream_configs: Controls default upstream connection settings and custom overrides for individual upstream services.
|
|
@@ -870,7 +870,7 @@ class ConfigEntryServiceDefaults(pulumi.CustomResource):
|
|
|
870
870
|
@pulumi.getter(name="meshGateways")
|
|
871
871
|
def mesh_gateways(self) -> pulumi.Output[Optional[Sequence['outputs.ConfigEntryServiceDefaultsMeshGateway']]]:
|
|
872
872
|
"""
|
|
873
|
-
Specifies the default mesh gateway mode field for
|
|
873
|
+
Specifies the default mesh gateway mode field for the service.
|
|
874
874
|
"""
|
|
875
875
|
return pulumi.get(self, "mesh_gateways")
|
|
876
876
|
|
|
@@ -910,7 +910,7 @@ class ConfigEntryServiceDefaults(pulumi.CustomResource):
|
|
|
910
910
|
@pulumi.getter
|
|
911
911
|
def namespace(self) -> pulumi.Output[Optional[str]]:
|
|
912
912
|
"""
|
|
913
|
-
Specifies the namespace
|
|
913
|
+
Specifies the Consul namespace that the configuration entry applies to.
|
|
914
914
|
"""
|
|
915
915
|
return pulumi.get(self, "namespace")
|
|
916
916
|
|
|
@@ -918,7 +918,7 @@ class ConfigEntryServiceDefaults(pulumi.CustomResource):
|
|
|
918
918
|
@pulumi.getter
|
|
919
919
|
def partition(self) -> pulumi.Output[Optional[str]]:
|
|
920
920
|
"""
|
|
921
|
-
Specifies the name of the name of the Consul admin partition that the configuration entry applies to.
|
|
921
|
+
Specifies the name of the name of the Consul admin partition that the configuration entry applies to. Refer to Admin Partitions for additional information.
|
|
922
922
|
"""
|
|
923
923
|
return pulumi.get(self, "partition")
|
|
924
924
|
|
|
@@ -26,9 +26,9 @@ class ConfigEntryServiceIntentionsArgs:
|
|
|
26
26
|
The set of arguments for constructing a ConfigEntryServiceIntentions resource.
|
|
27
27
|
:param pulumi.Input[Sequence[pulumi.Input['ConfigEntryServiceIntentionsJwtArgs']]] jwts: Specifies a JSON Web Token provider configured in a JWT provider configuration entry, as well as additional configurations for verifying a service's JWT before authorizing communication between services
|
|
28
28
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] meta: Specifies key-value pairs to add to the KV store.
|
|
29
|
-
:param pulumi.Input[str] name: Specifies
|
|
30
|
-
:param pulumi.Input[str] namespace: Specifies the
|
|
31
|
-
:param pulumi.Input[str] partition: Specifies the
|
|
29
|
+
:param pulumi.Input[str] name: Specifies a name of the destination service for all intentions defined in the configuration entry.
|
|
30
|
+
:param pulumi.Input[str] namespace: Specifies the namespace to apply the configuration entry.
|
|
31
|
+
:param pulumi.Input[str] partition: Specifies the admin partition to apply the configuration entry.
|
|
32
32
|
:param pulumi.Input[Sequence[pulumi.Input['ConfigEntryServiceIntentionsSourceArgs']]] sources: List of configurations that define intention sources and the authorization granted to the sources.
|
|
33
33
|
"""
|
|
34
34
|
if jwts is not None:
|
|
@@ -72,7 +72,7 @@ class ConfigEntryServiceIntentionsArgs:
|
|
|
72
72
|
@pulumi.getter
|
|
73
73
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
74
74
|
"""
|
|
75
|
-
Specifies
|
|
75
|
+
Specifies a name of the destination service for all intentions defined in the configuration entry.
|
|
76
76
|
"""
|
|
77
77
|
return pulumi.get(self, "name")
|
|
78
78
|
|
|
@@ -84,7 +84,7 @@ class ConfigEntryServiceIntentionsArgs:
|
|
|
84
84
|
@pulumi.getter
|
|
85
85
|
def namespace(self) -> Optional[pulumi.Input[str]]:
|
|
86
86
|
"""
|
|
87
|
-
Specifies the
|
|
87
|
+
Specifies the namespace to apply the configuration entry.
|
|
88
88
|
"""
|
|
89
89
|
return pulumi.get(self, "namespace")
|
|
90
90
|
|
|
@@ -96,7 +96,7 @@ class ConfigEntryServiceIntentionsArgs:
|
|
|
96
96
|
@pulumi.getter
|
|
97
97
|
def partition(self) -> Optional[pulumi.Input[str]]:
|
|
98
98
|
"""
|
|
99
|
-
Specifies the
|
|
99
|
+
Specifies the admin partition to apply the configuration entry.
|
|
100
100
|
"""
|
|
101
101
|
return pulumi.get(self, "partition")
|
|
102
102
|
|
|
@@ -130,9 +130,9 @@ class _ConfigEntryServiceIntentionsState:
|
|
|
130
130
|
Input properties used for looking up and filtering ConfigEntryServiceIntentions resources.
|
|
131
131
|
:param pulumi.Input[Sequence[pulumi.Input['ConfigEntryServiceIntentionsJwtArgs']]] jwts: Specifies a JSON Web Token provider configured in a JWT provider configuration entry, as well as additional configurations for verifying a service's JWT before authorizing communication between services
|
|
132
132
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] meta: Specifies key-value pairs to add to the KV store.
|
|
133
|
-
:param pulumi.Input[str] name: Specifies
|
|
134
|
-
:param pulumi.Input[str] namespace: Specifies the
|
|
135
|
-
:param pulumi.Input[str] partition: Specifies the
|
|
133
|
+
:param pulumi.Input[str] name: Specifies a name of the destination service for all intentions defined in the configuration entry.
|
|
134
|
+
:param pulumi.Input[str] namespace: Specifies the namespace to apply the configuration entry.
|
|
135
|
+
:param pulumi.Input[str] partition: Specifies the admin partition to apply the configuration entry.
|
|
136
136
|
:param pulumi.Input[Sequence[pulumi.Input['ConfigEntryServiceIntentionsSourceArgs']]] sources: List of configurations that define intention sources and the authorization granted to the sources.
|
|
137
137
|
"""
|
|
138
138
|
if jwts is not None:
|
|
@@ -176,7 +176,7 @@ class _ConfigEntryServiceIntentionsState:
|
|
|
176
176
|
@pulumi.getter
|
|
177
177
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
178
178
|
"""
|
|
179
|
-
Specifies
|
|
179
|
+
Specifies a name of the destination service for all intentions defined in the configuration entry.
|
|
180
180
|
"""
|
|
181
181
|
return pulumi.get(self, "name")
|
|
182
182
|
|
|
@@ -188,7 +188,7 @@ class _ConfigEntryServiceIntentionsState:
|
|
|
188
188
|
@pulumi.getter
|
|
189
189
|
def namespace(self) -> Optional[pulumi.Input[str]]:
|
|
190
190
|
"""
|
|
191
|
-
Specifies the
|
|
191
|
+
Specifies the namespace to apply the configuration entry.
|
|
192
192
|
"""
|
|
193
193
|
return pulumi.get(self, "namespace")
|
|
194
194
|
|
|
@@ -200,7 +200,7 @@ class _ConfigEntryServiceIntentionsState:
|
|
|
200
200
|
@pulumi.getter
|
|
201
201
|
def partition(self) -> Optional[pulumi.Input[str]]:
|
|
202
202
|
"""
|
|
203
|
-
Specifies the
|
|
203
|
+
Specifies the admin partition to apply the configuration entry.
|
|
204
204
|
"""
|
|
205
205
|
return pulumi.get(self, "partition")
|
|
206
206
|
|
|
@@ -236,7 +236,6 @@ class ConfigEntryServiceIntentions(pulumi.CustomResource):
|
|
|
236
236
|
"""
|
|
237
237
|
## Example Usage
|
|
238
238
|
|
|
239
|
-
<!--Start PulumiCodeChooser -->
|
|
240
239
|
```python
|
|
241
240
|
import pulumi
|
|
242
241
|
import json
|
|
@@ -282,15 +281,14 @@ class ConfigEntryServiceIntentions(pulumi.CustomResource):
|
|
|
282
281
|
),
|
|
283
282
|
])
|
|
284
283
|
```
|
|
285
|
-
<!--End PulumiCodeChooser -->
|
|
286
284
|
|
|
287
285
|
:param str resource_name: The name of the resource.
|
|
288
286
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
289
287
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ConfigEntryServiceIntentionsJwtArgs']]]] jwts: Specifies a JSON Web Token provider configured in a JWT provider configuration entry, as well as additional configurations for verifying a service's JWT before authorizing communication between services
|
|
290
288
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] meta: Specifies key-value pairs to add to the KV store.
|
|
291
|
-
:param pulumi.Input[str] name: Specifies
|
|
292
|
-
:param pulumi.Input[str] namespace: Specifies the
|
|
293
|
-
:param pulumi.Input[str] partition: Specifies the
|
|
289
|
+
:param pulumi.Input[str] name: Specifies a name of the destination service for all intentions defined in the configuration entry.
|
|
290
|
+
:param pulumi.Input[str] namespace: Specifies the namespace to apply the configuration entry.
|
|
291
|
+
:param pulumi.Input[str] partition: Specifies the admin partition to apply the configuration entry.
|
|
294
292
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ConfigEntryServiceIntentionsSourceArgs']]]] sources: List of configurations that define intention sources and the authorization granted to the sources.
|
|
295
293
|
"""
|
|
296
294
|
...
|
|
@@ -302,7 +300,6 @@ class ConfigEntryServiceIntentions(pulumi.CustomResource):
|
|
|
302
300
|
"""
|
|
303
301
|
## Example Usage
|
|
304
302
|
|
|
305
|
-
<!--Start PulumiCodeChooser -->
|
|
306
303
|
```python
|
|
307
304
|
import pulumi
|
|
308
305
|
import json
|
|
@@ -348,7 +345,6 @@ class ConfigEntryServiceIntentions(pulumi.CustomResource):
|
|
|
348
345
|
),
|
|
349
346
|
])
|
|
350
347
|
```
|
|
351
|
-
<!--End PulumiCodeChooser -->
|
|
352
348
|
|
|
353
349
|
:param str resource_name: The name of the resource.
|
|
354
350
|
:param ConfigEntryServiceIntentionsArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -411,9 +407,9 @@ class ConfigEntryServiceIntentions(pulumi.CustomResource):
|
|
|
411
407
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
412
408
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ConfigEntryServiceIntentionsJwtArgs']]]] jwts: Specifies a JSON Web Token provider configured in a JWT provider configuration entry, as well as additional configurations for verifying a service's JWT before authorizing communication between services
|
|
413
409
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] meta: Specifies key-value pairs to add to the KV store.
|
|
414
|
-
:param pulumi.Input[str] name: Specifies
|
|
415
|
-
:param pulumi.Input[str] namespace: Specifies the
|
|
416
|
-
:param pulumi.Input[str] partition: Specifies the
|
|
410
|
+
:param pulumi.Input[str] name: Specifies a name of the destination service for all intentions defined in the configuration entry.
|
|
411
|
+
:param pulumi.Input[str] namespace: Specifies the namespace to apply the configuration entry.
|
|
412
|
+
:param pulumi.Input[str] partition: Specifies the admin partition to apply the configuration entry.
|
|
417
413
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ConfigEntryServiceIntentionsSourceArgs']]]] sources: List of configurations that define intention sources and the authorization granted to the sources.
|
|
418
414
|
"""
|
|
419
415
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
@@ -448,7 +444,7 @@ class ConfigEntryServiceIntentions(pulumi.CustomResource):
|
|
|
448
444
|
@pulumi.getter
|
|
449
445
|
def name(self) -> pulumi.Output[str]:
|
|
450
446
|
"""
|
|
451
|
-
Specifies
|
|
447
|
+
Specifies a name of the destination service for all intentions defined in the configuration entry.
|
|
452
448
|
"""
|
|
453
449
|
return pulumi.get(self, "name")
|
|
454
450
|
|
|
@@ -456,7 +452,7 @@ class ConfigEntryServiceIntentions(pulumi.CustomResource):
|
|
|
456
452
|
@pulumi.getter
|
|
457
453
|
def namespace(self) -> pulumi.Output[Optional[str]]:
|
|
458
454
|
"""
|
|
459
|
-
Specifies the
|
|
455
|
+
Specifies the namespace to apply the configuration entry.
|
|
460
456
|
"""
|
|
461
457
|
return pulumi.get(self, "namespace")
|
|
462
458
|
|
|
@@ -464,7 +460,7 @@ class ConfigEntryServiceIntentions(pulumi.CustomResource):
|
|
|
464
460
|
@pulumi.getter
|
|
465
461
|
def partition(self) -> pulumi.Output[Optional[str]]:
|
|
466
462
|
"""
|
|
467
|
-
Specifies the
|
|
463
|
+
Specifies the admin partition to apply the configuration entry.
|
|
468
464
|
"""
|
|
469
465
|
return pulumi.get(self, "partition")
|
|
470
466
|
|
|
@@ -34,9 +34,9 @@ class ConfigEntryServiceResolverArgs:
|
|
|
34
34
|
:param pulumi.Input[Sequence[pulumi.Input['ConfigEntryServiceResolverFailoverArgs']]] failovers: Specifies controls for rerouting traffic to an alternate pool of service instances if the target service fails.
|
|
35
35
|
:param pulumi.Input[Sequence[pulumi.Input['ConfigEntryServiceResolverLoadBalancerArgs']]] load_balancers: Specifies the load balancing policy and configuration for services issuing requests to this upstream.
|
|
36
36
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] meta: Specifies key-value pairs to add to the KV store.
|
|
37
|
-
:param pulumi.Input[str] name:
|
|
38
|
-
:param pulumi.Input[str] namespace: Specifies the namespace
|
|
39
|
-
:param pulumi.Input[str] partition: Specifies the admin partition
|
|
37
|
+
:param pulumi.Input[str] name: Specifies a name for the configuration entry.
|
|
38
|
+
:param pulumi.Input[str] namespace: Specifies the namespace that the service resolver applies to.
|
|
39
|
+
:param pulumi.Input[str] partition: Specifies the admin partition that the service resolver applies to.
|
|
40
40
|
:param pulumi.Input[Sequence[pulumi.Input['ConfigEntryServiceResolverRedirectArgs']]] redirects: Specifies redirect instructions for local service traffic so that services deployed to a different network location resolve the upstream request instead.
|
|
41
41
|
:param pulumi.Input[str] request_timeout: Specifies the timeout duration for receiving an HTTP response from this service.
|
|
42
42
|
:param pulumi.Input[Sequence[pulumi.Input['ConfigEntryServiceResolverSubsetArgs']]] subsets: Specifies names for custom service subsets and the conditions under which service instances belong to each subset.
|
|
@@ -128,7 +128,7 @@ class ConfigEntryServiceResolverArgs:
|
|
|
128
128
|
@pulumi.getter
|
|
129
129
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
130
130
|
"""
|
|
131
|
-
|
|
131
|
+
Specifies a name for the configuration entry.
|
|
132
132
|
"""
|
|
133
133
|
return pulumi.get(self, "name")
|
|
134
134
|
|
|
@@ -140,7 +140,7 @@ class ConfigEntryServiceResolverArgs:
|
|
|
140
140
|
@pulumi.getter
|
|
141
141
|
def namespace(self) -> Optional[pulumi.Input[str]]:
|
|
142
142
|
"""
|
|
143
|
-
Specifies the namespace
|
|
143
|
+
Specifies the namespace that the service resolver applies to.
|
|
144
144
|
"""
|
|
145
145
|
return pulumi.get(self, "namespace")
|
|
146
146
|
|
|
@@ -152,7 +152,7 @@ class ConfigEntryServiceResolverArgs:
|
|
|
152
152
|
@pulumi.getter
|
|
153
153
|
def partition(self) -> Optional[pulumi.Input[str]]:
|
|
154
154
|
"""
|
|
155
|
-
Specifies the admin partition
|
|
155
|
+
Specifies the admin partition that the service resolver applies to.
|
|
156
156
|
"""
|
|
157
157
|
return pulumi.get(self, "partition")
|
|
158
158
|
|
|
@@ -218,9 +218,9 @@ class _ConfigEntryServiceResolverState:
|
|
|
218
218
|
:param pulumi.Input[Sequence[pulumi.Input['ConfigEntryServiceResolverFailoverArgs']]] failovers: Specifies controls for rerouting traffic to an alternate pool of service instances if the target service fails.
|
|
219
219
|
:param pulumi.Input[Sequence[pulumi.Input['ConfigEntryServiceResolverLoadBalancerArgs']]] load_balancers: Specifies the load balancing policy and configuration for services issuing requests to this upstream.
|
|
220
220
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] meta: Specifies key-value pairs to add to the KV store.
|
|
221
|
-
:param pulumi.Input[str] name:
|
|
222
|
-
:param pulumi.Input[str] namespace: Specifies the namespace
|
|
223
|
-
:param pulumi.Input[str] partition: Specifies the admin partition
|
|
221
|
+
:param pulumi.Input[str] name: Specifies a name for the configuration entry.
|
|
222
|
+
:param pulumi.Input[str] namespace: Specifies the namespace that the service resolver applies to.
|
|
223
|
+
:param pulumi.Input[str] partition: Specifies the admin partition that the service resolver applies to.
|
|
224
224
|
:param pulumi.Input[Sequence[pulumi.Input['ConfigEntryServiceResolverRedirectArgs']]] redirects: Specifies redirect instructions for local service traffic so that services deployed to a different network location resolve the upstream request instead.
|
|
225
225
|
:param pulumi.Input[str] request_timeout: Specifies the timeout duration for receiving an HTTP response from this service.
|
|
226
226
|
:param pulumi.Input[Sequence[pulumi.Input['ConfigEntryServiceResolverSubsetArgs']]] subsets: Specifies names for custom service subsets and the conditions under which service instances belong to each subset.
|
|
@@ -312,7 +312,7 @@ class _ConfigEntryServiceResolverState:
|
|
|
312
312
|
@pulumi.getter
|
|
313
313
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
314
314
|
"""
|
|
315
|
-
|
|
315
|
+
Specifies a name for the configuration entry.
|
|
316
316
|
"""
|
|
317
317
|
return pulumi.get(self, "name")
|
|
318
318
|
|
|
@@ -324,7 +324,7 @@ class _ConfigEntryServiceResolverState:
|
|
|
324
324
|
@pulumi.getter
|
|
325
325
|
def namespace(self) -> Optional[pulumi.Input[str]]:
|
|
326
326
|
"""
|
|
327
|
-
Specifies the namespace
|
|
327
|
+
Specifies the namespace that the service resolver applies to.
|
|
328
328
|
"""
|
|
329
329
|
return pulumi.get(self, "namespace")
|
|
330
330
|
|
|
@@ -336,7 +336,7 @@ class _ConfigEntryServiceResolverState:
|
|
|
336
336
|
@pulumi.getter
|
|
337
337
|
def partition(self) -> Optional[pulumi.Input[str]]:
|
|
338
338
|
"""
|
|
339
|
-
Specifies the admin partition
|
|
339
|
+
Specifies the admin partition that the service resolver applies to.
|
|
340
340
|
"""
|
|
341
341
|
return pulumi.get(self, "partition")
|
|
342
342
|
|
|
@@ -401,7 +401,6 @@ class ConfigEntryServiceResolver(pulumi.CustomResource):
|
|
|
401
401
|
"""
|
|
402
402
|
## Example Usage
|
|
403
403
|
|
|
404
|
-
<!--Start PulumiCodeChooser -->
|
|
405
404
|
```python
|
|
406
405
|
import pulumi
|
|
407
406
|
import pulumi_consul as consul
|
|
@@ -438,7 +437,6 @@ class ConfigEntryServiceResolver(pulumi.CustomResource):
|
|
|
438
437
|
),
|
|
439
438
|
])
|
|
440
439
|
```
|
|
441
|
-
<!--End PulumiCodeChooser -->
|
|
442
440
|
|
|
443
441
|
:param str resource_name: The name of the resource.
|
|
444
442
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -447,9 +445,9 @@ class ConfigEntryServiceResolver(pulumi.CustomResource):
|
|
|
447
445
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ConfigEntryServiceResolverFailoverArgs']]]] failovers: Specifies controls for rerouting traffic to an alternate pool of service instances if the target service fails.
|
|
448
446
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ConfigEntryServiceResolverLoadBalancerArgs']]]] load_balancers: Specifies the load balancing policy and configuration for services issuing requests to this upstream.
|
|
449
447
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] meta: Specifies key-value pairs to add to the KV store.
|
|
450
|
-
:param pulumi.Input[str] name:
|
|
451
|
-
:param pulumi.Input[str] namespace: Specifies the namespace
|
|
452
|
-
:param pulumi.Input[str] partition: Specifies the admin partition
|
|
448
|
+
:param pulumi.Input[str] name: Specifies a name for the configuration entry.
|
|
449
|
+
:param pulumi.Input[str] namespace: Specifies the namespace that the service resolver applies to.
|
|
450
|
+
:param pulumi.Input[str] partition: Specifies the admin partition that the service resolver applies to.
|
|
453
451
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ConfigEntryServiceResolverRedirectArgs']]]] redirects: Specifies redirect instructions for local service traffic so that services deployed to a different network location resolve the upstream request instead.
|
|
454
452
|
:param pulumi.Input[str] request_timeout: Specifies the timeout duration for receiving an HTTP response from this service.
|
|
455
453
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ConfigEntryServiceResolverSubsetArgs']]]] subsets: Specifies names for custom service subsets and the conditions under which service instances belong to each subset.
|
|
@@ -463,7 +461,6 @@ class ConfigEntryServiceResolver(pulumi.CustomResource):
|
|
|
463
461
|
"""
|
|
464
462
|
## Example Usage
|
|
465
463
|
|
|
466
|
-
<!--Start PulumiCodeChooser -->
|
|
467
464
|
```python
|
|
468
465
|
import pulumi
|
|
469
466
|
import pulumi_consul as consul
|
|
@@ -500,7 +497,6 @@ class ConfigEntryServiceResolver(pulumi.CustomResource):
|
|
|
500
497
|
),
|
|
501
498
|
])
|
|
502
499
|
```
|
|
503
|
-
<!--End PulumiCodeChooser -->
|
|
504
500
|
|
|
505
501
|
:param str resource_name: The name of the resource.
|
|
506
502
|
:param ConfigEntryServiceResolverArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -581,9 +577,9 @@ class ConfigEntryServiceResolver(pulumi.CustomResource):
|
|
|
581
577
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ConfigEntryServiceResolverFailoverArgs']]]] failovers: Specifies controls for rerouting traffic to an alternate pool of service instances if the target service fails.
|
|
582
578
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ConfigEntryServiceResolverLoadBalancerArgs']]]] load_balancers: Specifies the load balancing policy and configuration for services issuing requests to this upstream.
|
|
583
579
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] meta: Specifies key-value pairs to add to the KV store.
|
|
584
|
-
:param pulumi.Input[str] name:
|
|
585
|
-
:param pulumi.Input[str] namespace: Specifies the namespace
|
|
586
|
-
:param pulumi.Input[str] partition: Specifies the admin partition
|
|
580
|
+
:param pulumi.Input[str] name: Specifies a name for the configuration entry.
|
|
581
|
+
:param pulumi.Input[str] namespace: Specifies the namespace that the service resolver applies to.
|
|
582
|
+
:param pulumi.Input[str] partition: Specifies the admin partition that the service resolver applies to.
|
|
587
583
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ConfigEntryServiceResolverRedirectArgs']]]] redirects: Specifies redirect instructions for local service traffic so that services deployed to a different network location resolve the upstream request instead.
|
|
588
584
|
:param pulumi.Input[str] request_timeout: Specifies the timeout duration for receiving an HTTP response from this service.
|
|
589
585
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ConfigEntryServiceResolverSubsetArgs']]]] subsets: Specifies names for custom service subsets and the conditions under which service instances belong to each subset.
|
|
@@ -649,7 +645,7 @@ class ConfigEntryServiceResolver(pulumi.CustomResource):
|
|
|
649
645
|
@pulumi.getter
|
|
650
646
|
def name(self) -> pulumi.Output[str]:
|
|
651
647
|
"""
|
|
652
|
-
|
|
648
|
+
Specifies a name for the configuration entry.
|
|
653
649
|
"""
|
|
654
650
|
return pulumi.get(self, "name")
|
|
655
651
|
|
|
@@ -657,7 +653,7 @@ class ConfigEntryServiceResolver(pulumi.CustomResource):
|
|
|
657
653
|
@pulumi.getter
|
|
658
654
|
def namespace(self) -> pulumi.Output[Optional[str]]:
|
|
659
655
|
"""
|
|
660
|
-
Specifies the namespace
|
|
656
|
+
Specifies the namespace that the service resolver applies to.
|
|
661
657
|
"""
|
|
662
658
|
return pulumi.get(self, "namespace")
|
|
663
659
|
|
|
@@ -665,7 +661,7 @@ class ConfigEntryServiceResolver(pulumi.CustomResource):
|
|
|
665
661
|
@pulumi.getter
|
|
666
662
|
def partition(self) -> pulumi.Output[Optional[str]]:
|
|
667
663
|
"""
|
|
668
|
-
Specifies the admin partition
|
|
664
|
+
Specifies the admin partition that the service resolver applies to.
|
|
669
665
|
"""
|
|
670
666
|
return pulumi.get(self, "partition")
|
|
671
667
|
|
|
@@ -24,9 +24,9 @@ class ConfigEntryServiceRouterArgs:
|
|
|
24
24
|
"""
|
|
25
25
|
The set of arguments for constructing a ConfigEntryServiceRouter resource.
|
|
26
26
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] meta: Specifies key-value pairs to add to the KV store.
|
|
27
|
-
:param pulumi.Input[str] name: Specifies
|
|
28
|
-
:param pulumi.Input[str] namespace: Specifies the
|
|
29
|
-
:param pulumi.Input[str] partition: Specifies the
|
|
27
|
+
:param pulumi.Input[str] name: Specifies a name for the configuration entry.
|
|
28
|
+
:param pulumi.Input[str] namespace: Specifies the namespace to apply the configuration entry.
|
|
29
|
+
:param pulumi.Input[str] partition: Specifies the admin partition to apply the configuration entry.
|
|
30
30
|
:param pulumi.Input[Sequence[pulumi.Input['ConfigEntryServiceRouterRouteArgs']]] routes: Defines the possible routes for L7 requests.
|
|
31
31
|
"""
|
|
32
32
|
if meta is not None:
|
|
@@ -56,7 +56,7 @@ class ConfigEntryServiceRouterArgs:
|
|
|
56
56
|
@pulumi.getter
|
|
57
57
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
58
58
|
"""
|
|
59
|
-
Specifies
|
|
59
|
+
Specifies a name for the configuration entry.
|
|
60
60
|
"""
|
|
61
61
|
return pulumi.get(self, "name")
|
|
62
62
|
|
|
@@ -68,7 +68,7 @@ class ConfigEntryServiceRouterArgs:
|
|
|
68
68
|
@pulumi.getter
|
|
69
69
|
def namespace(self) -> Optional[pulumi.Input[str]]:
|
|
70
70
|
"""
|
|
71
|
-
Specifies the
|
|
71
|
+
Specifies the namespace to apply the configuration entry.
|
|
72
72
|
"""
|
|
73
73
|
return pulumi.get(self, "namespace")
|
|
74
74
|
|
|
@@ -80,7 +80,7 @@ class ConfigEntryServiceRouterArgs:
|
|
|
80
80
|
@pulumi.getter
|
|
81
81
|
def partition(self) -> Optional[pulumi.Input[str]]:
|
|
82
82
|
"""
|
|
83
|
-
Specifies the
|
|
83
|
+
Specifies the admin partition to apply the configuration entry.
|
|
84
84
|
"""
|
|
85
85
|
return pulumi.get(self, "partition")
|
|
86
86
|
|
|
@@ -112,9 +112,9 @@ class _ConfigEntryServiceRouterState:
|
|
|
112
112
|
"""
|
|
113
113
|
Input properties used for looking up and filtering ConfigEntryServiceRouter resources.
|
|
114
114
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] meta: Specifies key-value pairs to add to the KV store.
|
|
115
|
-
:param pulumi.Input[str] name: Specifies
|
|
116
|
-
:param pulumi.Input[str] namespace: Specifies the
|
|
117
|
-
:param pulumi.Input[str] partition: Specifies the
|
|
115
|
+
:param pulumi.Input[str] name: Specifies a name for the configuration entry.
|
|
116
|
+
:param pulumi.Input[str] namespace: Specifies the namespace to apply the configuration entry.
|
|
117
|
+
:param pulumi.Input[str] partition: Specifies the admin partition to apply the configuration entry.
|
|
118
118
|
:param pulumi.Input[Sequence[pulumi.Input['ConfigEntryServiceRouterRouteArgs']]] routes: Defines the possible routes for L7 requests.
|
|
119
119
|
"""
|
|
120
120
|
if meta is not None:
|
|
@@ -144,7 +144,7 @@ class _ConfigEntryServiceRouterState:
|
|
|
144
144
|
@pulumi.getter
|
|
145
145
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
146
146
|
"""
|
|
147
|
-
Specifies
|
|
147
|
+
Specifies a name for the configuration entry.
|
|
148
148
|
"""
|
|
149
149
|
return pulumi.get(self, "name")
|
|
150
150
|
|
|
@@ -156,7 +156,7 @@ class _ConfigEntryServiceRouterState:
|
|
|
156
156
|
@pulumi.getter
|
|
157
157
|
def namespace(self) -> Optional[pulumi.Input[str]]:
|
|
158
158
|
"""
|
|
159
|
-
Specifies the
|
|
159
|
+
Specifies the namespace to apply the configuration entry.
|
|
160
160
|
"""
|
|
161
161
|
return pulumi.get(self, "namespace")
|
|
162
162
|
|
|
@@ -168,7 +168,7 @@ class _ConfigEntryServiceRouterState:
|
|
|
168
168
|
@pulumi.getter
|
|
169
169
|
def partition(self) -> Optional[pulumi.Input[str]]:
|
|
170
170
|
"""
|
|
171
|
-
Specifies the
|
|
171
|
+
Specifies the admin partition to apply the configuration entry.
|
|
172
172
|
"""
|
|
173
173
|
return pulumi.get(self, "partition")
|
|
174
174
|
|
|
@@ -206,9 +206,9 @@ class ConfigEntryServiceRouter(pulumi.CustomResource):
|
|
|
206
206
|
:param str resource_name: The name of the resource.
|
|
207
207
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
208
208
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] meta: Specifies key-value pairs to add to the KV store.
|
|
209
|
-
:param pulumi.Input[str] name: Specifies
|
|
210
|
-
:param pulumi.Input[str] namespace: Specifies the
|
|
211
|
-
:param pulumi.Input[str] partition: Specifies the
|
|
209
|
+
:param pulumi.Input[str] name: Specifies a name for the configuration entry.
|
|
210
|
+
:param pulumi.Input[str] namespace: Specifies the namespace to apply the configuration entry.
|
|
211
|
+
:param pulumi.Input[str] partition: Specifies the admin partition to apply the configuration entry.
|
|
212
212
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ConfigEntryServiceRouterRouteArgs']]]] routes: Defines the possible routes for L7 requests.
|
|
213
213
|
"""
|
|
214
214
|
...
|
|
@@ -277,9 +277,9 @@ class ConfigEntryServiceRouter(pulumi.CustomResource):
|
|
|
277
277
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
278
278
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
279
279
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] meta: Specifies key-value pairs to add to the KV store.
|
|
280
|
-
:param pulumi.Input[str] name: Specifies
|
|
281
|
-
:param pulumi.Input[str] namespace: Specifies the
|
|
282
|
-
:param pulumi.Input[str] partition: Specifies the
|
|
280
|
+
:param pulumi.Input[str] name: Specifies a name for the configuration entry.
|
|
281
|
+
:param pulumi.Input[str] namespace: Specifies the namespace to apply the configuration entry.
|
|
282
|
+
:param pulumi.Input[str] partition: Specifies the admin partition to apply the configuration entry.
|
|
283
283
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ConfigEntryServiceRouterRouteArgs']]]] routes: Defines the possible routes for L7 requests.
|
|
284
284
|
"""
|
|
285
285
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
@@ -305,7 +305,7 @@ class ConfigEntryServiceRouter(pulumi.CustomResource):
|
|
|
305
305
|
@pulumi.getter
|
|
306
306
|
def name(self) -> pulumi.Output[str]:
|
|
307
307
|
"""
|
|
308
|
-
Specifies
|
|
308
|
+
Specifies a name for the configuration entry.
|
|
309
309
|
"""
|
|
310
310
|
return pulumi.get(self, "name")
|
|
311
311
|
|
|
@@ -313,7 +313,7 @@ class ConfigEntryServiceRouter(pulumi.CustomResource):
|
|
|
313
313
|
@pulumi.getter
|
|
314
314
|
def namespace(self) -> pulumi.Output[Optional[str]]:
|
|
315
315
|
"""
|
|
316
|
-
Specifies the
|
|
316
|
+
Specifies the namespace to apply the configuration entry.
|
|
317
317
|
"""
|
|
318
318
|
return pulumi.get(self, "namespace")
|
|
319
319
|
|
|
@@ -321,7 +321,7 @@ class ConfigEntryServiceRouter(pulumi.CustomResource):
|
|
|
321
321
|
@pulumi.getter
|
|
322
322
|
def partition(self) -> pulumi.Output[Optional[str]]:
|
|
323
323
|
"""
|
|
324
|
-
Specifies the
|
|
324
|
+
Specifies the admin partition to apply the configuration entry.
|
|
325
325
|
"""
|
|
326
326
|
return pulumi.get(self, "partition")
|
|
327
327
|
|