@pulumi/aws 5.34.0-alpha.1680199795 → 5.34.0
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.
- package/appmesh/getRoute.d.ts +103 -0
- package/appmesh/getRoute.js +29 -0
- package/appmesh/getRoute.js.map +1 -0
- package/appmesh/getVirtualGateway.d.ts +90 -0
- package/appmesh/getVirtualGateway.js +31 -0
- package/appmesh/getVirtualGateway.js.map +1 -0
- package/appmesh/getVirtualService.d.ts +1 -1
- package/appmesh/index.d.ts +6 -0
- package/appmesh/index.js +7 -1
- package/appmesh/index.js.map +1 -1
- package/appmesh/mesh.d.ts +6 -0
- package/appmesh/mesh.js +1 -1
- package/appmesh/mesh.js.map +1 -1
- package/appmesh/route.d.ts +6 -0
- package/appmesh/route.js +1 -1
- package/appmesh/route.js.map +1 -1
- package/appmesh/virtualGateway.d.ts +6 -0
- package/appmesh/virtualGateway.js +1 -1
- package/appmesh/virtualGateway.js.map +1 -1
- package/appmesh/virtualService.d.ts +6 -0
- package/appmesh/virtualService.js +1 -1
- package/appmesh/virtualService.js.map +1 -1
- package/cloudwatch/eventBusPolicy.d.ts +6 -3
- package/cloudwatch/eventBusPolicy.js.map +1 -1
- package/cloudwatch/eventPermission.d.ts +6 -3
- package/cloudwatch/eventPermission.js.map +1 -1
- package/cloudwatch/eventRule.d.ts +6 -3
- package/cloudwatch/eventRule.js.map +1 -1
- package/cloudwatch/eventTarget.d.ts +6 -3
- package/cloudwatch/eventTarget.js.map +1 -1
- package/codepipeline/pipeline.d.ts +125 -0
- package/codepipeline/pipeline.js +125 -0
- package/codepipeline/pipeline.js.map +1 -1
- package/cognito/userPoolClient.d.ts +14 -11
- package/cognito/userPoolClient.js +14 -11
- package/cognito/userPoolClient.js.map +1 -1
- package/ec2/placementGroup.d.ts +10 -10
- package/ec2/securityGroup.d.ts +48 -14
- package/ec2/securityGroup.js +45 -8
- package/ec2/securityGroup.js.map +1 -1
- package/ec2/vpcIpam.d.ts +12 -0
- package/ec2/vpcIpam.js.map +1 -1
- package/ec2/vpcIpamResourceDiscoveryAssociation.d.ts +38 -11
- package/ec2/vpcIpamResourceDiscoveryAssociation.js +3 -0
- package/ec2/vpcIpamResourceDiscoveryAssociation.js.map +1 -1
- package/ec2/vpcIpamScope.d.ts +8 -2
- package/ec2/vpcIpamScope.js.map +1 -1
- package/ecs/getCluster.d.ts +18 -0
- package/ecs/getCluster.js +1 -0
- package/ecs/getCluster.js.map +1 -1
- package/gamelift/matchmakingConfiguration.d.ts +4 -4
- package/gamelift/matchmakingConfiguration.js +0 -6
- package/gamelift/matchmakingConfiguration.js.map +1 -1
- package/lightsail/instance.d.ts +18 -3
- package/lightsail/instance.js +15 -0
- package/lightsail/instance.js.map +1 -1
- package/oam/index.d.ts +3 -0
- package/oam/index.js +6 -1
- package/oam/index.js.map +1 -1
- package/oam/link.d.ts +156 -0
- package/oam/link.js +102 -0
- package/oam/link.js.map +1 -0
- package/package.json +2 -2
- package/package.json.dev +2 -2
- package/rds/cluster.d.ts +25 -3
- package/rds/cluster.js +22 -0
- package/rds/cluster.js.map +1 -1
- package/rds/getReservedInstanceOffering.d.ts +4 -4
- package/rds/reservedInstance.d.ts +15 -0
- package/rds/reservedInstance.js.map +1 -1
- package/securityhub/account.d.ts +12 -0
- package/securityhub/account.js +2 -0
- package/securityhub/account.js.map +1 -1
- package/securityhub/member.d.ts +2 -2
- package/securityhub/member.js +0 -3
- package/securityhub/member.js.map +1 -1
- package/sesv2/contactList.d.ts +154 -0
- package/sesv2/contactList.js +104 -0
- package/sesv2/contactList.js.map +1 -0
- package/sesv2/index.d.ts +3 -0
- package/sesv2/index.js +6 -1
- package/sesv2/index.js.map +1 -1
- package/types/input.d.ts +77 -7
- package/types/output.d.ts +702 -7
package/ec2/securityGroup.d.ts
CHANGED
|
@@ -4,10 +4,7 @@ import * as outputs from "../types/output";
|
|
|
4
4
|
/**
|
|
5
5
|
* Provides a security group resource.
|
|
6
6
|
*
|
|
7
|
-
* > **NOTE on Security Groups and Security Group Rules:** This provider currently provides a Security Group resource with `ingress` and `egress` rules defined in-line and a Security Group Rule resource which manages one or more `ingress` or
|
|
8
|
-
* `egress` rules. Both of these resource were added before AWS assigned a [security group rule unique ID](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/security-group-rules.html), and they do not work well in all scenarios using the`description` and `tags` attributes, which rely on the unique ID.
|
|
9
|
-
* The `awsVpcSecurityGroupEgressRule` and `awsVpcSecurityGroupIngressRule` resources have been added to address these limitations and should be used for all new security group rules.
|
|
10
|
-
* You should not use the `awsVpcSecurityGroupEgressRule` and `awsVpcSecurityGroupIngressRule` resources in conjunction with an `aws.ec2.SecurityGroup` resource with in-line rules or with `aws.ec2.SecurityGroupRule` resources defined for the same Security Group, as rule conflicts may occur and rules will be overwritten.
|
|
7
|
+
* > **NOTE on Security Groups and Security Group Rules:** This provider currently provides a Security Group resource with `ingress` and `egress` rules defined in-line and a Security Group Rule resource which manages one or more `ingress` or `egress` rules. Both of these resource were added before AWS assigned a [security group rule unique ID](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/security-group-rules.html), and they do not work well in all scenarios using the`description` and `tags` attributes, which rely on the unique ID. The `awsVpcSecurityGroupEgressRule` and `awsVpcSecurityGroupIngressRule` resources have been added to address these limitations and should be used for all new security group rules. You should not use the `awsVpcSecurityGroupEgressRule` and `awsVpcSecurityGroupIngressRule` resources in conjunction with an `aws.ec2.SecurityGroup` resource with in-line rules or with `aws.ec2.SecurityGroupRule` resources defined for the same Security Group, as rule conflicts may occur and rules will be overwritten.
|
|
11
8
|
*
|
|
12
9
|
* > **NOTE:** Referencing Security Groups across VPC peering has certain restrictions. More information is available in the [VPC Peering User Guide](https://docs.aws.amazon.com/vpc/latest/peering/vpc-peering-security-groups.html).
|
|
13
10
|
*
|
|
@@ -83,17 +80,57 @@ import * as outputs from "../types/output";
|
|
|
83
80
|
* ```
|
|
84
81
|
*
|
|
85
82
|
* You can also find a specific Prefix List using the `aws.ec2.getPrefixList` data source.
|
|
86
|
-
* ###
|
|
83
|
+
* ### Recreating a Security Group
|
|
87
84
|
*
|
|
88
|
-
*
|
|
85
|
+
* A simple security group `name` change "forces new" the security group--the provider destroys the security group and creates a new one. (Likewise, `description`, `namePrefix`, or `vpcId` [cannot be changed](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/working-with-security-groups.html#creating-security-group).) Attempting to recreate the security group leads to a variety of complications depending on how it is used.
|
|
89
86
|
*
|
|
90
|
-
*
|
|
87
|
+
* Security groups are generally associated with other resources--**more than 100** AWS Provider resources reference security groups. Referencing a resource from another resource creates a one-way dependency. For example, if you create an EC2 `aws.ec2.Instance` that has a `vpcSecurityGroupIds` argument that refers to an `aws.ec2.SecurityGroup` resource, the `aws.ec2.SecurityGroup` is a dependent of the `aws.ec2.Instance`. Because of this, the provider will create the security group first so that it can then be associated with the EC2 instance.
|
|
88
|
+
*
|
|
89
|
+
* However, the dependency relationship actually goes both directions causing the _Security Group Deletion Problem_. AWS does not allow you to delete the security group associated with another resource (_e.g._, the `aws.ec2.Instance`).
|
|
90
|
+
*
|
|
91
|
+
* The provider does not model bi-directional dependencies like this, but, even if it did, simply knowing the dependency situation would not be enough to solve it. For example, some resources must always have an associated security group while others don't need to. In addition, when the `aws.ec2.SecurityGroup` resource attempts to recreate, it receives a dependent object error, which does not provide information on whether the dependent object is a security group rule or, for example, an associated EC2 instance. Within the provider, the associated resource (_e.g._, `aws.ec2.Instance`) does not receive an error when the `aws.ec2.SecurityGroup` is trying to recreate even though that is where changes to the associated resource would need to take place (_e.g._, removing the security group association).
|
|
92
|
+
*
|
|
93
|
+
* Despite these sticky problems, below are some ways to improve your experience when you find it necessary to recreate a security group.
|
|
94
|
+
* ### `createBeforeDestroy`
|
|
95
|
+
*
|
|
96
|
+
* (This example is one approach to recreating security groups. For more information on the challenges and the _Security Group Deletion Problem_, see the section above.)
|
|
97
|
+
*
|
|
98
|
+
* Normally, the provider first deletes the existing security group resource and then creates a new one. When a security group is associated with a resource, the delete won't succeed. You can invert the default behavior using the `createBeforeDestroy` meta argument:
|
|
99
|
+
*
|
|
100
|
+
* ```typescript
|
|
101
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
102
|
+
* import * as aws from "@pulumi/aws";
|
|
103
|
+
*
|
|
104
|
+
* const example = new aws.ec2.SecurityGroup("example", {});
|
|
105
|
+
* ```
|
|
106
|
+
* ### `replaceTriggeredBy`
|
|
107
|
+
*
|
|
108
|
+
* (This example is one approach to recreating security groups. For more information on the challenges and the _Security Group Deletion Problem_, see the section above.)
|
|
109
|
+
*
|
|
110
|
+
* To replace a resource when a security group changes, use the `replaceTriggeredBy` meta argument. Note that in this example, the `aws.ec2.Instance` will be destroyed and created again when the `aws.ec2.SecurityGroup` changes.
|
|
111
|
+
*
|
|
112
|
+
* ```typescript
|
|
113
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
114
|
+
* import * as aws from "@pulumi/aws";
|
|
115
|
+
*
|
|
116
|
+
* const exampleSecurityGroup = new aws.ec2.SecurityGroup("exampleSecurityGroup", {});
|
|
117
|
+
* // ... other configuration ...
|
|
118
|
+
* const exampleInstance = new aws.ec2.Instance("exampleInstance", {
|
|
119
|
+
* instanceType: "t3.small",
|
|
120
|
+
* vpcSecurityGroupIds: [aws_security_group.test.id],
|
|
121
|
+
* });
|
|
122
|
+
* ```
|
|
123
|
+
* ### Shorter timeout
|
|
124
|
+
*
|
|
125
|
+
* (This example is one approach to recreating security groups. For more information on the challenges and the _Security Group Deletion Problem_, see the section above.)
|
|
126
|
+
*
|
|
127
|
+
* If destroying a security group takes a long time, it may be because the provider cannot distinguish between a dependent object (_e.g._, a security group rule or EC2 instance) that is _in the process of being deleted_ and one that is not. In other words, it may be waiting for a train that isn't scheduled to arrive. To fail faster, shorten the `delete` timeout from the default timeout:
|
|
91
128
|
*
|
|
92
129
|
* ```typescript
|
|
93
130
|
* import * as pulumi from "@pulumi/pulumi";
|
|
94
131
|
* import * as aws from "@pulumi/aws";
|
|
95
132
|
*
|
|
96
|
-
* const
|
|
133
|
+
* const example = new aws.ec2.SecurityGroup("example", {});
|
|
97
134
|
* ```
|
|
98
135
|
*
|
|
99
136
|
* ## Import
|
|
@@ -165,8 +202,7 @@ export declare class SecurityGroup extends pulumi.CustomResource {
|
|
|
165
202
|
[key: string]: string;
|
|
166
203
|
}>;
|
|
167
204
|
/**
|
|
168
|
-
* VPC ID.
|
|
169
|
-
* Defaults to the region's default VPC.
|
|
205
|
+
* VPC ID. Defaults to the region's default VPC.
|
|
170
206
|
*/
|
|
171
207
|
readonly vpcId: pulumi.Output<string>;
|
|
172
208
|
/**
|
|
@@ -227,8 +263,7 @@ export interface SecurityGroupState {
|
|
|
227
263
|
[key: string]: pulumi.Input<string>;
|
|
228
264
|
}>;
|
|
229
265
|
/**
|
|
230
|
-
* VPC ID.
|
|
231
|
-
* Defaults to the region's default VPC.
|
|
266
|
+
* VPC ID. Defaults to the region's default VPC.
|
|
232
267
|
*/
|
|
233
268
|
vpcId?: pulumi.Input<string>;
|
|
234
269
|
}
|
|
@@ -267,8 +302,7 @@ export interface SecurityGroupArgs {
|
|
|
267
302
|
[key: string]: pulumi.Input<string>;
|
|
268
303
|
}>;
|
|
269
304
|
/**
|
|
270
|
-
* VPC ID.
|
|
271
|
-
* Defaults to the region's default VPC.
|
|
305
|
+
* VPC ID. Defaults to the region's default VPC.
|
|
272
306
|
*/
|
|
273
307
|
vpcId?: pulumi.Input<string>;
|
|
274
308
|
}
|
package/ec2/securityGroup.js
CHANGED
|
@@ -8,10 +8,7 @@ const utilities = require("../utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* Provides a security group resource.
|
|
10
10
|
*
|
|
11
|
-
* > **NOTE on Security Groups and Security Group Rules:** This provider currently provides a Security Group resource with `ingress` and `egress` rules defined in-line and a Security Group Rule resource which manages one or more `ingress` or
|
|
12
|
-
* `egress` rules. Both of these resource were added before AWS assigned a [security group rule unique ID](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/security-group-rules.html), and they do not work well in all scenarios using the`description` and `tags` attributes, which rely on the unique ID.
|
|
13
|
-
* The `awsVpcSecurityGroupEgressRule` and `awsVpcSecurityGroupIngressRule` resources have been added to address these limitations and should be used for all new security group rules.
|
|
14
|
-
* You should not use the `awsVpcSecurityGroupEgressRule` and `awsVpcSecurityGroupIngressRule` resources in conjunction with an `aws.ec2.SecurityGroup` resource with in-line rules or with `aws.ec2.SecurityGroupRule` resources defined for the same Security Group, as rule conflicts may occur and rules will be overwritten.
|
|
11
|
+
* > **NOTE on Security Groups and Security Group Rules:** This provider currently provides a Security Group resource with `ingress` and `egress` rules defined in-line and a Security Group Rule resource which manages one or more `ingress` or `egress` rules. Both of these resource were added before AWS assigned a [security group rule unique ID](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/security-group-rules.html), and they do not work well in all scenarios using the`description` and `tags` attributes, which rely on the unique ID. The `awsVpcSecurityGroupEgressRule` and `awsVpcSecurityGroupIngressRule` resources have been added to address these limitations and should be used for all new security group rules. You should not use the `awsVpcSecurityGroupEgressRule` and `awsVpcSecurityGroupIngressRule` resources in conjunction with an `aws.ec2.SecurityGroup` resource with in-line rules or with `aws.ec2.SecurityGroupRule` resources defined for the same Security Group, as rule conflicts may occur and rules will be overwritten.
|
|
15
12
|
*
|
|
16
13
|
* > **NOTE:** Referencing Security Groups across VPC peering has certain restrictions. More information is available in the [VPC Peering User Guide](https://docs.aws.amazon.com/vpc/latest/peering/vpc-peering-security-groups.html).
|
|
17
14
|
*
|
|
@@ -87,17 +84,57 @@ const utilities = require("../utilities");
|
|
|
87
84
|
* ```
|
|
88
85
|
*
|
|
89
86
|
* You can also find a specific Prefix List using the `aws.ec2.getPrefixList` data source.
|
|
90
|
-
* ###
|
|
87
|
+
* ### Recreating a Security Group
|
|
91
88
|
*
|
|
92
|
-
*
|
|
89
|
+
* A simple security group `name` change "forces new" the security group--the provider destroys the security group and creates a new one. (Likewise, `description`, `namePrefix`, or `vpcId` [cannot be changed](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/working-with-security-groups.html#creating-security-group).) Attempting to recreate the security group leads to a variety of complications depending on how it is used.
|
|
93
90
|
*
|
|
94
|
-
*
|
|
91
|
+
* Security groups are generally associated with other resources--**more than 100** AWS Provider resources reference security groups. Referencing a resource from another resource creates a one-way dependency. For example, if you create an EC2 `aws.ec2.Instance` that has a `vpcSecurityGroupIds` argument that refers to an `aws.ec2.SecurityGroup` resource, the `aws.ec2.SecurityGroup` is a dependent of the `aws.ec2.Instance`. Because of this, the provider will create the security group first so that it can then be associated with the EC2 instance.
|
|
92
|
+
*
|
|
93
|
+
* However, the dependency relationship actually goes both directions causing the _Security Group Deletion Problem_. AWS does not allow you to delete the security group associated with another resource (_e.g._, the `aws.ec2.Instance`).
|
|
94
|
+
*
|
|
95
|
+
* The provider does not model bi-directional dependencies like this, but, even if it did, simply knowing the dependency situation would not be enough to solve it. For example, some resources must always have an associated security group while others don't need to. In addition, when the `aws.ec2.SecurityGroup` resource attempts to recreate, it receives a dependent object error, which does not provide information on whether the dependent object is a security group rule or, for example, an associated EC2 instance. Within the provider, the associated resource (_e.g._, `aws.ec2.Instance`) does not receive an error when the `aws.ec2.SecurityGroup` is trying to recreate even though that is where changes to the associated resource would need to take place (_e.g._, removing the security group association).
|
|
96
|
+
*
|
|
97
|
+
* Despite these sticky problems, below are some ways to improve your experience when you find it necessary to recreate a security group.
|
|
98
|
+
* ### `createBeforeDestroy`
|
|
99
|
+
*
|
|
100
|
+
* (This example is one approach to recreating security groups. For more information on the challenges and the _Security Group Deletion Problem_, see the section above.)
|
|
101
|
+
*
|
|
102
|
+
* Normally, the provider first deletes the existing security group resource and then creates a new one. When a security group is associated with a resource, the delete won't succeed. You can invert the default behavior using the `createBeforeDestroy` meta argument:
|
|
103
|
+
*
|
|
104
|
+
* ```typescript
|
|
105
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
106
|
+
* import * as aws from "@pulumi/aws";
|
|
107
|
+
*
|
|
108
|
+
* const example = new aws.ec2.SecurityGroup("example", {});
|
|
109
|
+
* ```
|
|
110
|
+
* ### `replaceTriggeredBy`
|
|
111
|
+
*
|
|
112
|
+
* (This example is one approach to recreating security groups. For more information on the challenges and the _Security Group Deletion Problem_, see the section above.)
|
|
113
|
+
*
|
|
114
|
+
* To replace a resource when a security group changes, use the `replaceTriggeredBy` meta argument. Note that in this example, the `aws.ec2.Instance` will be destroyed and created again when the `aws.ec2.SecurityGroup` changes.
|
|
115
|
+
*
|
|
116
|
+
* ```typescript
|
|
117
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
118
|
+
* import * as aws from "@pulumi/aws";
|
|
119
|
+
*
|
|
120
|
+
* const exampleSecurityGroup = new aws.ec2.SecurityGroup("exampleSecurityGroup", {});
|
|
121
|
+
* // ... other configuration ...
|
|
122
|
+
* const exampleInstance = new aws.ec2.Instance("exampleInstance", {
|
|
123
|
+
* instanceType: "t3.small",
|
|
124
|
+
* vpcSecurityGroupIds: [aws_security_group.test.id],
|
|
125
|
+
* });
|
|
126
|
+
* ```
|
|
127
|
+
* ### Shorter timeout
|
|
128
|
+
*
|
|
129
|
+
* (This example is one approach to recreating security groups. For more information on the challenges and the _Security Group Deletion Problem_, see the section above.)
|
|
130
|
+
*
|
|
131
|
+
* If destroying a security group takes a long time, it may be because the provider cannot distinguish between a dependent object (_e.g._, a security group rule or EC2 instance) that is _in the process of being deleted_ and one that is not. In other words, it may be waiting for a train that isn't scheduled to arrive. To fail faster, shorten the `delete` timeout from the default timeout:
|
|
95
132
|
*
|
|
96
133
|
* ```typescript
|
|
97
134
|
* import * as pulumi from "@pulumi/pulumi";
|
|
98
135
|
* import * as aws from "@pulumi/aws";
|
|
99
136
|
*
|
|
100
|
-
* const
|
|
137
|
+
* const example = new aws.ec2.SecurityGroup("example", {});
|
|
101
138
|
* ```
|
|
102
139
|
*
|
|
103
140
|
* ## Import
|
package/ec2/securityGroup.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"securityGroup.js","sourceRoot":"","sources":["../../ec2/securityGroup.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAIzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"securityGroup.js","sourceRoot":"","sources":["../../ec2/securityGroup.ts"],"names":[],"mappings":"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"}
|
package/ec2/vpcIpam.d.ts
CHANGED
|
@@ -36,7 +36,13 @@ export declare class VpcIpam extends pulumi.CustomResource {
|
|
|
36
36
|
* Enables you to quickly delete an IPAM, private scopes, pools in private scopes, and any allocations in the pools in private scopes.
|
|
37
37
|
*/
|
|
38
38
|
readonly cascade: pulumi.Output<boolean | undefined>;
|
|
39
|
+
/**
|
|
40
|
+
* The IPAM's default resource discovery association ID.
|
|
41
|
+
*/
|
|
39
42
|
readonly defaultResourceDiscoveryAssociationId: pulumi.Output<string>;
|
|
43
|
+
/**
|
|
44
|
+
* The IPAM's default resource discovery ID.
|
|
45
|
+
*/
|
|
40
46
|
readonly defaultResourceDiscoveryId: pulumi.Output<string>;
|
|
41
47
|
/**
|
|
42
48
|
* A description for the IPAM.
|
|
@@ -92,7 +98,13 @@ export interface VpcIpamState {
|
|
|
92
98
|
* Enables you to quickly delete an IPAM, private scopes, pools in private scopes, and any allocations in the pools in private scopes.
|
|
93
99
|
*/
|
|
94
100
|
cascade?: pulumi.Input<boolean>;
|
|
101
|
+
/**
|
|
102
|
+
* The IPAM's default resource discovery association ID.
|
|
103
|
+
*/
|
|
95
104
|
defaultResourceDiscoveryAssociationId?: pulumi.Input<string>;
|
|
105
|
+
/**
|
|
106
|
+
* The IPAM's default resource discovery ID.
|
|
107
|
+
*/
|
|
96
108
|
defaultResourceDiscoveryId?: pulumi.Input<string>;
|
|
97
109
|
/**
|
|
98
110
|
* A description for the IPAM.
|
package/ec2/vpcIpam.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"vpcIpam.js","sourceRoot":"","sources":["../../ec2/vpcIpam.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAIzC,0CAA0C;AAE1C;;;;;;;;;;GAUG;AACH,MAAa,OAAQ,SAAQ,MAAM,CAAC,cAAc;IAC9C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAoB,EAAE,IAAmC;QAClH,OAAO,IAAI,OAAO,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC9D,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,OAAO,CAAC,YAAY,CAAC;IACxD,CAAC;
|
|
1
|
+
{"version":3,"file":"vpcIpam.js","sourceRoot":"","sources":["../../ec2/vpcIpam.ts"],"names":[],"mappings":"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"}
|
|
@@ -15,6 +15,9 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
15
15
|
* const test = new aws.ec2.VpcIpamResourceDiscoveryAssociation("test", {
|
|
16
16
|
* ipamId: aws_vpc_ipam.test.id,
|
|
17
17
|
* ipamResourceDiscoveryId: aws_vpc_ipam_resource_discovery.test.id,
|
|
18
|
+
* tags: {
|
|
19
|
+
* Name: "test",
|
|
20
|
+
* },
|
|
18
21
|
* });
|
|
19
22
|
* ```
|
|
20
23
|
*
|
|
@@ -43,31 +46,40 @@ export declare class VpcIpamResourceDiscoveryAssociation extends pulumi.CustomRe
|
|
|
43
46
|
*/
|
|
44
47
|
static isInstance(obj: any): obj is VpcIpamResourceDiscoveryAssociation;
|
|
45
48
|
/**
|
|
46
|
-
* Amazon Resource Name (ARN) of IPAM Resource Discovery Association
|
|
49
|
+
* The Amazon Resource Name (ARN) of IPAM Resource Discovery Association.
|
|
47
50
|
*/
|
|
48
51
|
readonly arn: pulumi.Output<string>;
|
|
49
52
|
/**
|
|
50
|
-
* The
|
|
53
|
+
* The Amazon Resource Name (ARN) of the IPAM.
|
|
51
54
|
*/
|
|
52
55
|
readonly ipamArn: pulumi.Output<string>;
|
|
53
56
|
/**
|
|
54
|
-
*
|
|
57
|
+
* The ID of the IPAM to associate.
|
|
55
58
|
*/
|
|
56
59
|
readonly ipamId: pulumi.Output<string>;
|
|
57
60
|
/**
|
|
58
|
-
* The home region of the IPAM
|
|
61
|
+
* The home region of the IPAM.
|
|
59
62
|
*/
|
|
60
63
|
readonly ipamRegion: pulumi.Output<string>;
|
|
64
|
+
/**
|
|
65
|
+
* The ID of the Resource Discovery to associate.
|
|
66
|
+
*/
|
|
61
67
|
readonly ipamResourceDiscoveryId: pulumi.Output<string>;
|
|
62
68
|
/**
|
|
63
|
-
* A boolean to identify if the Resource Discovery is the accounts default resource discovery
|
|
69
|
+
* A boolean to identify if the Resource Discovery is the accounts default resource discovery.
|
|
64
70
|
*/
|
|
65
71
|
readonly isDefault: pulumi.Output<boolean>;
|
|
66
72
|
/**
|
|
67
73
|
* The account ID for the account that manages the Resource Discovery
|
|
68
74
|
*/
|
|
69
75
|
readonly ownerId: pulumi.Output<string>;
|
|
76
|
+
/**
|
|
77
|
+
* The lifecycle state of the association when you associate or disassociate a resource discovery.
|
|
78
|
+
*/
|
|
70
79
|
readonly state: pulumi.Output<string>;
|
|
80
|
+
/**
|
|
81
|
+
* A map of tags to add to the IPAM resource discovery association resource.
|
|
82
|
+
*/
|
|
71
83
|
readonly tags: pulumi.Output<{
|
|
72
84
|
[key: string]: string;
|
|
73
85
|
} | undefined>;
|
|
@@ -91,31 +103,40 @@ export declare class VpcIpamResourceDiscoveryAssociation extends pulumi.CustomRe
|
|
|
91
103
|
*/
|
|
92
104
|
export interface VpcIpamResourceDiscoveryAssociationState {
|
|
93
105
|
/**
|
|
94
|
-
* Amazon Resource Name (ARN) of IPAM Resource Discovery Association
|
|
106
|
+
* The Amazon Resource Name (ARN) of IPAM Resource Discovery Association.
|
|
95
107
|
*/
|
|
96
108
|
arn?: pulumi.Input<string>;
|
|
97
109
|
/**
|
|
98
|
-
* The
|
|
110
|
+
* The Amazon Resource Name (ARN) of the IPAM.
|
|
99
111
|
*/
|
|
100
112
|
ipamArn?: pulumi.Input<string>;
|
|
101
113
|
/**
|
|
102
|
-
*
|
|
114
|
+
* The ID of the IPAM to associate.
|
|
103
115
|
*/
|
|
104
116
|
ipamId?: pulumi.Input<string>;
|
|
105
117
|
/**
|
|
106
|
-
* The home region of the IPAM
|
|
118
|
+
* The home region of the IPAM.
|
|
107
119
|
*/
|
|
108
120
|
ipamRegion?: pulumi.Input<string>;
|
|
121
|
+
/**
|
|
122
|
+
* The ID of the Resource Discovery to associate.
|
|
123
|
+
*/
|
|
109
124
|
ipamResourceDiscoveryId?: pulumi.Input<string>;
|
|
110
125
|
/**
|
|
111
|
-
* A boolean to identify if the Resource Discovery is the accounts default resource discovery
|
|
126
|
+
* A boolean to identify if the Resource Discovery is the accounts default resource discovery.
|
|
112
127
|
*/
|
|
113
128
|
isDefault?: pulumi.Input<boolean>;
|
|
114
129
|
/**
|
|
115
130
|
* The account ID for the account that manages the Resource Discovery
|
|
116
131
|
*/
|
|
117
132
|
ownerId?: pulumi.Input<string>;
|
|
133
|
+
/**
|
|
134
|
+
* The lifecycle state of the association when you associate or disassociate a resource discovery.
|
|
135
|
+
*/
|
|
118
136
|
state?: pulumi.Input<string>;
|
|
137
|
+
/**
|
|
138
|
+
* A map of tags to add to the IPAM resource discovery association resource.
|
|
139
|
+
*/
|
|
119
140
|
tags?: pulumi.Input<{
|
|
120
141
|
[key: string]: pulumi.Input<string>;
|
|
121
142
|
}>;
|
|
@@ -131,10 +152,16 @@ export interface VpcIpamResourceDiscoveryAssociationState {
|
|
|
131
152
|
*/
|
|
132
153
|
export interface VpcIpamResourceDiscoveryAssociationArgs {
|
|
133
154
|
/**
|
|
134
|
-
*
|
|
155
|
+
* The ID of the IPAM to associate.
|
|
135
156
|
*/
|
|
136
157
|
ipamId: pulumi.Input<string>;
|
|
158
|
+
/**
|
|
159
|
+
* The ID of the Resource Discovery to associate.
|
|
160
|
+
*/
|
|
137
161
|
ipamResourceDiscoveryId: pulumi.Input<string>;
|
|
162
|
+
/**
|
|
163
|
+
* A map of tags to add to the IPAM resource discovery association resource.
|
|
164
|
+
*/
|
|
138
165
|
tags?: pulumi.Input<{
|
|
139
166
|
[key: string]: pulumi.Input<string>;
|
|
140
167
|
}>;
|
|
@@ -21,6 +21,9 @@ const utilities = require("../utilities");
|
|
|
21
21
|
* const test = new aws.ec2.VpcIpamResourceDiscoveryAssociation("test", {
|
|
22
22
|
* ipamId: aws_vpc_ipam.test.id,
|
|
23
23
|
* ipamResourceDiscoveryId: aws_vpc_ipam_resource_discovery.test.id,
|
|
24
|
+
* tags: {
|
|
25
|
+
* Name: "test",
|
|
26
|
+
* },
|
|
24
27
|
* });
|
|
25
28
|
* ```
|
|
26
29
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"vpcIpamResourceDiscoveryAssociation.js","sourceRoot":"","sources":["../../ec2/vpcIpamResourceDiscoveryAssociation.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"vpcIpamResourceDiscoveryAssociation.js","sourceRoot":"","sources":["../../ec2/vpcIpamResourceDiscoveryAssociation.ts"],"names":[],"mappings":"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"}
|
package/ec2/vpcIpamScope.d.ts
CHANGED
|
@@ -44,6 +44,9 @@ export declare class VpcIpamScope extends pulumi.CustomResource {
|
|
|
44
44
|
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
45
45
|
*/
|
|
46
46
|
static isInstance(obj: any): obj is VpcIpamScope;
|
|
47
|
+
/**
|
|
48
|
+
* The Amazon Resource Name (ARN) of the scope.
|
|
49
|
+
*/
|
|
47
50
|
readonly arn: pulumi.Output<string>;
|
|
48
51
|
/**
|
|
49
52
|
* A description for the scope you're creating.
|
|
@@ -63,7 +66,7 @@ export declare class VpcIpamScope extends pulumi.CustomResource {
|
|
|
63
66
|
*/
|
|
64
67
|
readonly isDefault: pulumi.Output<boolean>;
|
|
65
68
|
/**
|
|
66
|
-
*
|
|
69
|
+
* The number of pools in the scope.
|
|
67
70
|
*/
|
|
68
71
|
readonly poolCount: pulumi.Output<number>;
|
|
69
72
|
/**
|
|
@@ -88,6 +91,9 @@ export declare class VpcIpamScope extends pulumi.CustomResource {
|
|
|
88
91
|
* Input properties used for looking up and filtering VpcIpamScope resources.
|
|
89
92
|
*/
|
|
90
93
|
export interface VpcIpamScopeState {
|
|
94
|
+
/**
|
|
95
|
+
* The Amazon Resource Name (ARN) of the scope.
|
|
96
|
+
*/
|
|
91
97
|
arn?: pulumi.Input<string>;
|
|
92
98
|
/**
|
|
93
99
|
* A description for the scope you're creating.
|
|
@@ -107,7 +113,7 @@ export interface VpcIpamScopeState {
|
|
|
107
113
|
*/
|
|
108
114
|
isDefault?: pulumi.Input<boolean>;
|
|
109
115
|
/**
|
|
110
|
-
*
|
|
116
|
+
* The number of pools in the scope.
|
|
111
117
|
*/
|
|
112
118
|
poolCount?: pulumi.Input<number>;
|
|
113
119
|
/**
|
package/ec2/vpcIpamScope.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"vpcIpamScope.js","sourceRoot":"","sources":["../../ec2/vpcIpamScope.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BG;AACH,MAAa,YAAa,SAAQ,MAAM,CAAC,cAAc;IACnD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAyB,EAAE,IAAmC;QACvH,OAAO,IAAI,YAAY,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACnE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,YAAY,CAAC,YAAY,CAAC;IAC7D,CAAC;
|
|
1
|
+
{"version":3,"file":"vpcIpamScope.js","sourceRoot":"","sources":["../../ec2/vpcIpamScope.ts"],"names":[],"mappings":"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"}
|
package/ecs/getCluster.d.ts
CHANGED
|
@@ -24,6 +24,12 @@ export interface GetClusterArgs {
|
|
|
24
24
|
* Name of the ECS Cluster
|
|
25
25
|
*/
|
|
26
26
|
clusterName: string;
|
|
27
|
+
/**
|
|
28
|
+
* Key-value map of resource tags
|
|
29
|
+
*/
|
|
30
|
+
tags?: {
|
|
31
|
+
[key: string]: string;
|
|
32
|
+
};
|
|
27
33
|
}
|
|
28
34
|
/**
|
|
29
35
|
* A collection of values returned by getCluster.
|
|
@@ -62,6 +68,12 @@ export interface GetClusterResult {
|
|
|
62
68
|
* Status of the ECS Cluster
|
|
63
69
|
*/
|
|
64
70
|
readonly status: string;
|
|
71
|
+
/**
|
|
72
|
+
* Key-value map of resource tags
|
|
73
|
+
*/
|
|
74
|
+
readonly tags: {
|
|
75
|
+
[key: string]: string;
|
|
76
|
+
};
|
|
65
77
|
}
|
|
66
78
|
/**
|
|
67
79
|
* The ECS Cluster data source allows access to details of a specific
|
|
@@ -87,4 +99,10 @@ export interface GetClusterOutputArgs {
|
|
|
87
99
|
* Name of the ECS Cluster
|
|
88
100
|
*/
|
|
89
101
|
clusterName: pulumi.Input<string>;
|
|
102
|
+
/**
|
|
103
|
+
* Key-value map of resource tags
|
|
104
|
+
*/
|
|
105
|
+
tags?: pulumi.Input<{
|
|
106
|
+
[key: string]: pulumi.Input<string>;
|
|
107
|
+
}>;
|
|
90
108
|
}
|
package/ecs/getCluster.js
CHANGED
|
@@ -24,6 +24,7 @@ function getCluster(args, opts) {
|
|
|
24
24
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
25
25
|
return pulumi.runtime.invoke("aws:ecs/getCluster:getCluster", {
|
|
26
26
|
"clusterName": args.clusterName,
|
|
27
|
+
"tags": args.tags,
|
|
27
28
|
}, opts);
|
|
28
29
|
}
|
|
29
30
|
exports.getCluster = getCluster;
|
package/ecs/getCluster.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getCluster.js","sourceRoot":"","sources":["../../ecs/getCluster.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAIzC,0CAA0C;AAE1C;;;;;;;;;;;;;;GAcG;AACH,SAAgB,UAAU,CAAC,IAAoB,EAAE,IAA2B;IAExE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,+BAA+B,EAAE;QAC1D,aAAa,EAAE,IAAI,CAAC,WAAW;
|
|
1
|
+
{"version":3,"file":"getCluster.js","sourceRoot":"","sources":["../../ecs/getCluster.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAIzC,0CAA0C;AAE1C;;;;;;;;;;;;;;GAcG;AACH,SAAgB,UAAU,CAAC,IAAoB,EAAE,IAA2B;IAExE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,+BAA+B,EAAE;QAC1D,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,gCAOC;AA0DD;;;;;;;;;;;;;;GAcG;AACH,SAAgB,gBAAgB,CAAC,IAA0B,EAAE,IAA2B;IACpF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,UAAU,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACrE,CAAC;AAFD,4CAEC"}
|
|
@@ -73,7 +73,7 @@ export declare class MatchmakingConfiguration extends pulumi.CustomResource {
|
|
|
73
73
|
/**
|
|
74
74
|
* Specifies if the match that was created with this configuration must be accepted by matched players.
|
|
75
75
|
*/
|
|
76
|
-
readonly acceptanceRequired: pulumi.Output<boolean>;
|
|
76
|
+
readonly acceptanceRequired: pulumi.Output<boolean | undefined>;
|
|
77
77
|
/**
|
|
78
78
|
* The length of time (in seconds) to wait for players to accept a proposed match, if acceptance is required.
|
|
79
79
|
*/
|
|
@@ -113,7 +113,7 @@ export declare class MatchmakingConfiguration extends pulumi.CustomResource {
|
|
|
113
113
|
/**
|
|
114
114
|
* A set of custom game session properties.
|
|
115
115
|
*/
|
|
116
|
-
readonly gameSessionData: pulumi.Output<string>;
|
|
116
|
+
readonly gameSessionData: pulumi.Output<string | undefined>;
|
|
117
117
|
/**
|
|
118
118
|
* The ARNs of the GameLift game session queue resources.
|
|
119
119
|
*/
|
|
@@ -245,7 +245,7 @@ export interface MatchmakingConfigurationArgs {
|
|
|
245
245
|
/**
|
|
246
246
|
* Specifies if the match that was created with this configuration must be accepted by matched players.
|
|
247
247
|
*/
|
|
248
|
-
acceptanceRequired
|
|
248
|
+
acceptanceRequired?: pulumi.Input<boolean>;
|
|
249
249
|
/**
|
|
250
250
|
* The length of time (in seconds) to wait for players to accept a proposed match, if acceptance is required.
|
|
251
251
|
*/
|
|
@@ -277,7 +277,7 @@ export interface MatchmakingConfigurationArgs {
|
|
|
277
277
|
/**
|
|
278
278
|
* A set of custom game session properties.
|
|
279
279
|
*/
|
|
280
|
-
gameSessionData
|
|
280
|
+
gameSessionData?: pulumi.Input<string>;
|
|
281
281
|
/**
|
|
282
282
|
* The ARNs of the GameLift game session queue resources.
|
|
283
283
|
*/
|
|
@@ -108,12 +108,6 @@ class MatchmakingConfiguration extends pulumi.CustomResource {
|
|
|
108
108
|
}
|
|
109
109
|
else {
|
|
110
110
|
const args = argsOrState;
|
|
111
|
-
if ((!args || args.acceptanceRequired === undefined) && !opts.urn) {
|
|
112
|
-
throw new Error("Missing required property 'acceptanceRequired'");
|
|
113
|
-
}
|
|
114
|
-
if ((!args || args.gameSessionData === undefined) && !opts.urn) {
|
|
115
|
-
throw new Error("Missing required property 'gameSessionData'");
|
|
116
|
-
}
|
|
117
111
|
if ((!args || args.requestTimeoutSeconds === undefined) && !opts.urn) {
|
|
118
112
|
throw new Error("Missing required property 'requestTimeoutSeconds'");
|
|
119
113
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"matchmakingConfiguration.js","sourceRoot":"","sources":["../../gamelift/matchmakingConfiguration.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"matchmakingConfiguration.js","sourceRoot":"","sources":["../../gamelift/matchmakingConfiguration.ts"],"names":[],"mappings":"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"}
|
package/lightsail/instance.d.ts
CHANGED
|
@@ -26,6 +26,21 @@ import * as outputs from "../types/output";
|
|
|
26
26
|
* },
|
|
27
27
|
* });
|
|
28
28
|
* ```
|
|
29
|
+
* ### Example With User Data
|
|
30
|
+
*
|
|
31
|
+
* Lightsail user data is handled differently than ec2 user data. Lightsail user data only accepts a single lined string. The below example shows installing apache and creating the index page.
|
|
32
|
+
*
|
|
33
|
+
* ```typescript
|
|
34
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
35
|
+
* import * as aws from "@pulumi/aws";
|
|
36
|
+
*
|
|
37
|
+
* const custom = new aws.lightsail.Instance("custom", {
|
|
38
|
+
* availabilityZone: "us-east-1b",
|
|
39
|
+
* blueprintId: "amazon_linux_2",
|
|
40
|
+
* bundleId: "nano_1_0",
|
|
41
|
+
* userData: "sudo yum install -y httpd && sudo systemctl start httpd && sudo systemctl enable httpd && echo '<h1>Deployed via Pulumi</h1>' | sudo tee /var/www/html/index.html",
|
|
42
|
+
* });
|
|
43
|
+
* ```
|
|
29
44
|
* ### Enable Auto Snapshots
|
|
30
45
|
*
|
|
31
46
|
* ```typescript
|
|
@@ -203,7 +218,7 @@ export declare class Instance extends pulumi.CustomResource {
|
|
|
203
218
|
[key: string]: string;
|
|
204
219
|
}>;
|
|
205
220
|
/**
|
|
206
|
-
* launch script to configure server with additional user data
|
|
221
|
+
* Single lined launch script as a string to configure server with additional user data
|
|
207
222
|
*/
|
|
208
223
|
readonly userData: pulumi.Output<string | undefined>;
|
|
209
224
|
/**
|
|
@@ -304,7 +319,7 @@ export interface InstanceState {
|
|
|
304
319
|
[key: string]: pulumi.Input<string>;
|
|
305
320
|
}>;
|
|
306
321
|
/**
|
|
307
|
-
* launch script to configure server with additional user data
|
|
322
|
+
* Single lined launch script as a string to configure server with additional user data
|
|
308
323
|
*/
|
|
309
324
|
userData?: pulumi.Input<string>;
|
|
310
325
|
/**
|
|
@@ -353,7 +368,7 @@ export interface InstanceArgs {
|
|
|
353
368
|
[key: string]: pulumi.Input<string>;
|
|
354
369
|
}>;
|
|
355
370
|
/**
|
|
356
|
-
* launch script to configure server with additional user data
|
|
371
|
+
* Single lined launch script as a string to configure server with additional user data
|
|
357
372
|
*/
|
|
358
373
|
userData?: pulumi.Input<string>;
|
|
359
374
|
}
|