@pulumi/aws 5.25.0-alpha.1671707862 → 5.25.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/directconnect/connection.d.ts +79 -0
- package/directconnect/connection.js +37 -0
- package/directconnect/connection.js.map +1 -1
- package/directconnect/index.d.ts +3 -0
- package/directconnect/index.js +6 -1
- package/directconnect/index.js.map +1 -1
- package/directconnect/macsecKeyAssociation.d.ts +144 -0
- package/directconnect/macsecKeyAssociation.js +106 -0
- package/directconnect/macsecKeyAssociation.js.map +1 -0
- package/gamelift/index.d.ts +6 -0
- package/gamelift/index.js +11 -1
- package/gamelift/index.js.map +1 -1
- package/gamelift/matchmakingConfiguration.d.ts +307 -0
- package/gamelift/matchmakingConfiguration.js +150 -0
- package/gamelift/matchmakingConfiguration.js.map +1 -0
- package/gamelift/matchmakingRuleSet.d.ts +102 -0
- package/gamelift/matchmakingRuleSet.js +73 -0
- package/gamelift/matchmakingRuleSet.js.map +1 -0
- package/inspector2/enabler.d.ts +3 -3
- package/networkfirewall/ruleGroup.d.ts +32 -0
- package/networkfirewall/ruleGroup.js +32 -0
- package/networkfirewall/ruleGroup.js.map +1 -1
- package/package.json +2 -2
- package/package.json.dev +2 -2
- package/types/input.d.ts +52 -14
- package/types/output.d.ts +52 -14
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.MatchmakingRuleSet = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Provides a GameLift Matchmaking Rule Set resources.
|
|
10
|
+
*
|
|
11
|
+
* ## Import
|
|
12
|
+
*
|
|
13
|
+
* GameLift Matchmaking Rule Sets
|
|
14
|
+
*
|
|
15
|
+
* can be imported using the ID, e.g.,
|
|
16
|
+
*
|
|
17
|
+
* ```sh
|
|
18
|
+
* $ pulumi import aws:gamelift/matchmakingRuleSet:MatchmakingRuleSet example <ruleset-id>
|
|
19
|
+
* ```
|
|
20
|
+
*/
|
|
21
|
+
class MatchmakingRuleSet extends pulumi.CustomResource {
|
|
22
|
+
/**
|
|
23
|
+
* Get an existing MatchmakingRuleSet resource's state with the given name, ID, and optional extra
|
|
24
|
+
* properties used to qualify the lookup.
|
|
25
|
+
*
|
|
26
|
+
* @param name The _unique_ name of the resulting resource.
|
|
27
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
28
|
+
* @param state Any extra arguments used during the lookup.
|
|
29
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
30
|
+
*/
|
|
31
|
+
static get(name, id, state, opts) {
|
|
32
|
+
return new MatchmakingRuleSet(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* Returns true if the given object is an instance of MatchmakingRuleSet. This is designed to work even
|
|
36
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
37
|
+
*/
|
|
38
|
+
static isInstance(obj) {
|
|
39
|
+
if (obj === undefined || obj === null) {
|
|
40
|
+
return false;
|
|
41
|
+
}
|
|
42
|
+
return obj['__pulumiType'] === MatchmakingRuleSet.__pulumiType;
|
|
43
|
+
}
|
|
44
|
+
constructor(name, argsOrState, opts) {
|
|
45
|
+
let resourceInputs = {};
|
|
46
|
+
opts = opts || {};
|
|
47
|
+
if (opts.id) {
|
|
48
|
+
const state = argsOrState;
|
|
49
|
+
resourceInputs["arn"] = state ? state.arn : undefined;
|
|
50
|
+
resourceInputs["name"] = state ? state.name : undefined;
|
|
51
|
+
resourceInputs["ruleSetBody"] = state ? state.ruleSetBody : undefined;
|
|
52
|
+
resourceInputs["tags"] = state ? state.tags : undefined;
|
|
53
|
+
resourceInputs["tagsAll"] = state ? state.tagsAll : undefined;
|
|
54
|
+
}
|
|
55
|
+
else {
|
|
56
|
+
const args = argsOrState;
|
|
57
|
+
if ((!args || args.ruleSetBody === undefined) && !opts.urn) {
|
|
58
|
+
throw new Error("Missing required property 'ruleSetBody'");
|
|
59
|
+
}
|
|
60
|
+
resourceInputs["name"] = args ? args.name : undefined;
|
|
61
|
+
resourceInputs["ruleSetBody"] = args ? args.ruleSetBody : undefined;
|
|
62
|
+
resourceInputs["tags"] = args ? args.tags : undefined;
|
|
63
|
+
resourceInputs["arn"] = undefined /*out*/;
|
|
64
|
+
resourceInputs["tagsAll"] = undefined /*out*/;
|
|
65
|
+
}
|
|
66
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
67
|
+
super(MatchmakingRuleSet.__pulumiType, name, resourceInputs, opts);
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
exports.MatchmakingRuleSet = MatchmakingRuleSet;
|
|
71
|
+
/** @internal */
|
|
72
|
+
MatchmakingRuleSet.__pulumiType = 'aws:gamelift/matchmakingRuleSet:MatchmakingRuleSet';
|
|
73
|
+
//# sourceMappingURL=matchmakingRuleSet.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"matchmakingRuleSet.js","sourceRoot":"","sources":["../../gamelift/matchmakingRuleSet.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;GAYG;AACH,MAAa,kBAAmB,SAAQ,MAAM,CAAC,cAAc;IACzD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA+B,EAAE,IAAmC;QAC7H,OAAO,IAAI,kBAAkB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACzE,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,kBAAkB,CAAC,YAAY,CAAC;IACnE,CAAC;IA4BD,YAAY,IAAY,EAAE,WAA8D,EAAE,IAAmC;QACzH,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAkD,CAAC;YACjE,cAAc,CAAC,KAAK,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;SACjE;aAAM;YACH,MAAM,IAAI,GAAG,WAAiD,CAAC;YAC/D,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,WAAW,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACxD,MAAM,IAAI,KAAK,CAAC,yCAAyC,CAAC,CAAC;aAC9D;YACD,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,KAAK,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC1C,cAAc,CAAC,SAAS,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SACjD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,kBAAkB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACvE,CAAC;;AA7EL,gDA8EC;AAhEG,gBAAgB;AACO,+BAAY,GAAG,oDAAoD,CAAC"}
|
package/inspector2/enabler.d.ts
CHANGED
|
@@ -53,7 +53,7 @@ export declare class Enabler extends pulumi.CustomResource {
|
|
|
53
53
|
*/
|
|
54
54
|
readonly accountIds: pulumi.Output<string[]>;
|
|
55
55
|
/**
|
|
56
|
-
* Type of resources to scan. Valid values are `EC2` and `
|
|
56
|
+
* Type of resources to scan. Valid values are `EC2`, `ECR`, and `LAMBDA`. If you only use one type, the provider will ignore the status of the other type.
|
|
57
57
|
*/
|
|
58
58
|
readonly resourceTypes: pulumi.Output<string[]>;
|
|
59
59
|
/**
|
|
@@ -74,7 +74,7 @@ export interface EnablerState {
|
|
|
74
74
|
*/
|
|
75
75
|
accountIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
76
76
|
/**
|
|
77
|
-
* Type of resources to scan. Valid values are `EC2` and `
|
|
77
|
+
* Type of resources to scan. Valid values are `EC2`, `ECR`, and `LAMBDA`. If you only use one type, the provider will ignore the status of the other type.
|
|
78
78
|
*/
|
|
79
79
|
resourceTypes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
80
80
|
}
|
|
@@ -87,7 +87,7 @@ export interface EnablerArgs {
|
|
|
87
87
|
*/
|
|
88
88
|
accountIds: pulumi.Input<pulumi.Input<string>[]>;
|
|
89
89
|
/**
|
|
90
|
-
* Type of resources to scan. Valid values are `EC2` and `
|
|
90
|
+
* Type of resources to scan. Valid values are `EC2`, `ECR`, and `LAMBDA`. If you only use one type, the provider will ignore the status of the other type.
|
|
91
91
|
*/
|
|
92
92
|
resourceTypes: pulumi.Input<pulumi.Input<string>[]>;
|
|
93
93
|
}
|
|
@@ -96,6 +96,38 @@ import * as outputs from "../types/output";
|
|
|
96
96
|
* },
|
|
97
97
|
* });
|
|
98
98
|
* ```
|
|
99
|
+
* ### IP Set References to the Rule Group
|
|
100
|
+
*
|
|
101
|
+
* ```typescript
|
|
102
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
103
|
+
* import * as aws from "@pulumi/aws";
|
|
104
|
+
*
|
|
105
|
+
* const example = new aws.networkfirewall.RuleGroup("example", {
|
|
106
|
+
* capacity: 100,
|
|
107
|
+
* type: "STATEFUL",
|
|
108
|
+
* ruleGroup: {
|
|
109
|
+
* rulesSource: {
|
|
110
|
+
* rulesSourceList: {
|
|
111
|
+
* generatedRulesType: "DENYLIST",
|
|
112
|
+
* targetTypes: ["HTTP_HOST"],
|
|
113
|
+
* targets: ["test.example.com"],
|
|
114
|
+
* },
|
|
115
|
+
* },
|
|
116
|
+
* referenceSets: {
|
|
117
|
+
* ipSetReferences: [{
|
|
118
|
+
* key: "example",
|
|
119
|
+
* ipSetReferences: [{
|
|
120
|
+
* referenceArn: aws_ec2_managed_prefix_list["this"].arn,
|
|
121
|
+
* }],
|
|
122
|
+
* }],
|
|
123
|
+
* },
|
|
124
|
+
* },
|
|
125
|
+
* tags: {
|
|
126
|
+
* Tag1: "Value1",
|
|
127
|
+
* Tag2: "Value2",
|
|
128
|
+
* },
|
|
129
|
+
* });
|
|
130
|
+
* ```
|
|
99
131
|
*
|
|
100
132
|
* ## Import
|
|
101
133
|
*
|
|
@@ -100,6 +100,38 @@ const utilities = require("../utilities");
|
|
|
100
100
|
* },
|
|
101
101
|
* });
|
|
102
102
|
* ```
|
|
103
|
+
* ### IP Set References to the Rule Group
|
|
104
|
+
*
|
|
105
|
+
* ```typescript
|
|
106
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
107
|
+
* import * as aws from "@pulumi/aws";
|
|
108
|
+
*
|
|
109
|
+
* const example = new aws.networkfirewall.RuleGroup("example", {
|
|
110
|
+
* capacity: 100,
|
|
111
|
+
* type: "STATEFUL",
|
|
112
|
+
* ruleGroup: {
|
|
113
|
+
* rulesSource: {
|
|
114
|
+
* rulesSourceList: {
|
|
115
|
+
* generatedRulesType: "DENYLIST",
|
|
116
|
+
* targetTypes: ["HTTP_HOST"],
|
|
117
|
+
* targets: ["test.example.com"],
|
|
118
|
+
* },
|
|
119
|
+
* },
|
|
120
|
+
* referenceSets: {
|
|
121
|
+
* ipSetReferences: [{
|
|
122
|
+
* key: "example",
|
|
123
|
+
* ipSetReferences: [{
|
|
124
|
+
* referenceArn: aws_ec2_managed_prefix_list["this"].arn,
|
|
125
|
+
* }],
|
|
126
|
+
* }],
|
|
127
|
+
* },
|
|
128
|
+
* },
|
|
129
|
+
* tags: {
|
|
130
|
+
* Tag1: "Value1",
|
|
131
|
+
* Tag2: "Value2",
|
|
132
|
+
* },
|
|
133
|
+
* });
|
|
134
|
+
* ```
|
|
103
135
|
*
|
|
104
136
|
* ## Import
|
|
105
137
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ruleGroup.js","sourceRoot":"","sources":["../../networkfirewall/ruleGroup.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAIzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"ruleGroup.js","sourceRoot":"","sources":["../../networkfirewall/ruleGroup.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/aws",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.25.0",
|
|
4
4
|
"description": "A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"license": "Apache-2.0",
|
|
12
12
|
"scripts": {
|
|
13
13
|
"build": "tsc",
|
|
14
|
-
"install": "node scripts/install-pulumi-plugin.js resource aws
|
|
14
|
+
"install": "node scripts/install-pulumi-plugin.js resource aws 5.25.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@pulumi/pulumi": "^3.0.0",
|
package/package.json.dev
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/aws",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.25.0",
|
|
4
4
|
"description": "A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"license": "Apache-2.0",
|
|
12
12
|
"scripts": {
|
|
13
13
|
"build": "tsc",
|
|
14
|
-
"install": "node scripts/install-pulumi-plugin.js resource aws
|
|
14
|
+
"install": "node scripts/install-pulumi-plugin.js resource aws 5.25.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@pulumi/pulumi": "^3.0.0",
|
package/types/input.d.ts
CHANGED
|
@@ -422,6 +422,7 @@ export interface ProviderEndpoint {
|
|
|
422
422
|
nimble?: pulumi.Input<string>;
|
|
423
423
|
nimblestudio?: pulumi.Input<string>;
|
|
424
424
|
opensearch?: pulumi.Input<string>;
|
|
425
|
+
opensearchserverless?: pulumi.Input<string>;
|
|
425
426
|
opensearchservice?: pulumi.Input<string>;
|
|
426
427
|
opsworks?: pulumi.Input<string>;
|
|
427
428
|
opsworkscm?: pulumi.Input<string>;
|
|
@@ -10165,7 +10166,7 @@ export declare namespace codebuild {
|
|
|
10165
10166
|
*/
|
|
10166
10167
|
path?: pulumi.Input<string>;
|
|
10167
10168
|
/**
|
|
10168
|
-
*
|
|
10169
|
+
* Authorization type to use. The only valid value is `OAUTH`. This data type is deprecated and is no longer accurate or used. Use the `aws.codebuild.SourceCredential` resource instead.
|
|
10169
10170
|
*/
|
|
10170
10171
|
type: pulumi.Input<string>;
|
|
10171
10172
|
}
|
|
@@ -10175,7 +10176,7 @@ export declare namespace codebuild {
|
|
|
10175
10176
|
*/
|
|
10176
10177
|
combineArtifacts?: pulumi.Input<boolean>;
|
|
10177
10178
|
/**
|
|
10178
|
-
*
|
|
10179
|
+
* Configuration block specifying the restrictions for the batch build. Detailed below.
|
|
10179
10180
|
*/
|
|
10180
10181
|
restrictions?: pulumi.Input<inputs.codebuild.ProjectBuildBatchConfigRestrictions>;
|
|
10181
10182
|
/**
|
|
@@ -10207,7 +10208,7 @@ export declare namespace codebuild {
|
|
|
10207
10208
|
*/
|
|
10208
10209
|
modes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
10209
10210
|
/**
|
|
10210
|
-
*
|
|
10211
|
+
* Authorization type to use. The only valid value is `OAUTH`. This data type is deprecated and is no longer accurate or used. Use the `aws.codebuild.SourceCredential` resource instead.
|
|
10211
10212
|
*/
|
|
10212
10213
|
type?: pulumi.Input<string>;
|
|
10213
10214
|
}
|
|
@@ -10241,7 +10242,7 @@ export declare namespace codebuild {
|
|
|
10241
10242
|
*/
|
|
10242
10243
|
registryCredential?: pulumi.Input<inputs.codebuild.ProjectEnvironmentRegistryCredential>;
|
|
10243
10244
|
/**
|
|
10244
|
-
*
|
|
10245
|
+
* Authorization type to use. The only valid value is `OAUTH`. This data type is deprecated and is no longer accurate or used. Use the `aws.codebuild.SourceCredential` resource instead.
|
|
10245
10246
|
*/
|
|
10246
10247
|
type: pulumi.Input<string>;
|
|
10247
10248
|
}
|
|
@@ -10251,7 +10252,7 @@ export declare namespace codebuild {
|
|
|
10251
10252
|
*/
|
|
10252
10253
|
name: pulumi.Input<string>;
|
|
10253
10254
|
/**
|
|
10254
|
-
*
|
|
10255
|
+
* Authorization type to use. The only valid value is `OAUTH`. This data type is deprecated and is no longer accurate or used. Use the `aws.codebuild.SourceCredential` resource instead.
|
|
10255
10256
|
*/
|
|
10256
10257
|
type?: pulumi.Input<string>;
|
|
10257
10258
|
/**
|
|
@@ -10275,7 +10276,7 @@ export declare namespace codebuild {
|
|
|
10275
10276
|
*/
|
|
10276
10277
|
identifier?: pulumi.Input<string>;
|
|
10277
10278
|
/**
|
|
10278
|
-
*
|
|
10279
|
+
* Location of the source code from git or s3.
|
|
10279
10280
|
*/
|
|
10280
10281
|
location?: pulumi.Input<string>;
|
|
10281
10282
|
/**
|
|
@@ -10371,7 +10372,7 @@ export declare namespace codebuild {
|
|
|
10371
10372
|
*/
|
|
10372
10373
|
path?: pulumi.Input<string>;
|
|
10373
10374
|
/**
|
|
10374
|
-
*
|
|
10375
|
+
* Authorization type to use. The only valid value is `OAUTH`. This data type is deprecated and is no longer accurate or used. Use the `aws.codebuild.SourceCredential` resource instead.
|
|
10375
10376
|
*/
|
|
10376
10377
|
type: pulumi.Input<string>;
|
|
10377
10378
|
}
|
|
@@ -10383,7 +10384,7 @@ export declare namespace codebuild {
|
|
|
10383
10384
|
*/
|
|
10384
10385
|
auth?: pulumi.Input<inputs.codebuild.ProjectSecondarySourceAuth>;
|
|
10385
10386
|
/**
|
|
10386
|
-
*
|
|
10387
|
+
* Configuration block that contains information that defines how the build project reports the build status to the source provider. This option is only used when the source provider is `GITHUB`, `GITHUB_ENTERPRISE`, or `BITBUCKET`. `buildStatusConfig` blocks are documented below.
|
|
10387
10388
|
*/
|
|
10388
10389
|
buildStatusConfig?: pulumi.Input<inputs.codebuild.ProjectSecondarySourceBuildStatusConfig>;
|
|
10389
10390
|
/**
|
|
@@ -10415,7 +10416,7 @@ export declare namespace codebuild {
|
|
|
10415
10416
|
*/
|
|
10416
10417
|
sourceIdentifier: pulumi.Input<string>;
|
|
10417
10418
|
/**
|
|
10418
|
-
*
|
|
10419
|
+
* Authorization type to use. The only valid value is `OAUTH`. This data type is deprecated and is no longer accurate or used. Use the `aws.codebuild.SourceCredential` resource instead.
|
|
10419
10420
|
*/
|
|
10420
10421
|
type: pulumi.Input<string>;
|
|
10421
10422
|
}
|
|
@@ -10427,7 +10428,7 @@ export declare namespace codebuild {
|
|
|
10427
10428
|
*/
|
|
10428
10429
|
resource?: pulumi.Input<string>;
|
|
10429
10430
|
/**
|
|
10430
|
-
*
|
|
10431
|
+
* Authorization type to use. The only valid value is `OAUTH`. This data type is deprecated and is no longer accurate or used. Use the `aws.codebuild.SourceCredential` resource instead.
|
|
10431
10432
|
*
|
|
10432
10433
|
* @deprecated Use the aws_codebuild_source_credential resource instead
|
|
10433
10434
|
*/
|
|
@@ -10467,7 +10468,7 @@ export declare namespace codebuild {
|
|
|
10467
10468
|
*/
|
|
10468
10469
|
auth?: pulumi.Input<inputs.codebuild.ProjectSourceAuth>;
|
|
10469
10470
|
/**
|
|
10470
|
-
*
|
|
10471
|
+
* Configuration block that contains information that defines how the build project reports the build status to the source provider. This option is only used when the source provider is `GITHUB`, `GITHUB_ENTERPRISE`, or `BITBUCKET`. `buildStatusConfig` blocks are documented below.
|
|
10471
10472
|
*/
|
|
10472
10473
|
buildStatusConfig?: pulumi.Input<inputs.codebuild.ProjectSourceBuildStatusConfig>;
|
|
10473
10474
|
/**
|
|
@@ -10495,7 +10496,7 @@ export declare namespace codebuild {
|
|
|
10495
10496
|
*/
|
|
10496
10497
|
reportBuildStatus?: pulumi.Input<boolean>;
|
|
10497
10498
|
/**
|
|
10498
|
-
*
|
|
10499
|
+
* Authorization type to use. The only valid value is `OAUTH`. This data type is deprecated and is no longer accurate or used. Use the `aws.codebuild.SourceCredential` resource instead.
|
|
10499
10500
|
*/
|
|
10500
10501
|
type: pulumi.Input<string>;
|
|
10501
10502
|
}
|
|
@@ -10507,7 +10508,7 @@ export declare namespace codebuild {
|
|
|
10507
10508
|
*/
|
|
10508
10509
|
resource?: pulumi.Input<string>;
|
|
10509
10510
|
/**
|
|
10510
|
-
*
|
|
10511
|
+
* Authorization type to use. The only valid value is `OAUTH`. This data type is deprecated and is no longer accurate or used. Use the `aws.codebuild.SourceCredential` resource instead.
|
|
10511
10512
|
*
|
|
10512
10513
|
* @deprecated Use the aws_codebuild_source_credential resource instead
|
|
10513
10514
|
*/
|
|
@@ -22653,6 +22654,16 @@ export declare namespace gamelift {
|
|
|
22653
22654
|
*/
|
|
22654
22655
|
policyDurationSeconds?: pulumi.Input<number>;
|
|
22655
22656
|
}
|
|
22657
|
+
interface MatchmakingConfigurationGameProperty {
|
|
22658
|
+
/**
|
|
22659
|
+
* A game property key
|
|
22660
|
+
*/
|
|
22661
|
+
key: pulumi.Input<string>;
|
|
22662
|
+
/**
|
|
22663
|
+
* A game property value.
|
|
22664
|
+
*/
|
|
22665
|
+
value: pulumi.Input<string>;
|
|
22666
|
+
}
|
|
22656
22667
|
interface ScriptStorageLocation {
|
|
22657
22668
|
/**
|
|
22658
22669
|
* Name of your S3 bucket.
|
|
@@ -32833,6 +32844,10 @@ export declare namespace networkfirewall {
|
|
|
32833
32844
|
type: pulumi.Input<string>;
|
|
32834
32845
|
}
|
|
32835
32846
|
interface RuleGroupRuleGroup {
|
|
32847
|
+
/**
|
|
32848
|
+
* A configuration block that defines the IP Set References for the rule group. See Reference Sets below for details.
|
|
32849
|
+
*/
|
|
32850
|
+
referenceSets?: pulumi.Input<inputs.networkfirewall.RuleGroupRuleGroupReferenceSets>;
|
|
32836
32851
|
/**
|
|
32837
32852
|
* A configuration block that defines additional settings available to use in the rules defined in the rule group. Can only be specified for **stateful** rule groups. See Rule Variables below for details.
|
|
32838
32853
|
*/
|
|
@@ -32846,6 +32861,25 @@ export declare namespace networkfirewall {
|
|
|
32846
32861
|
*/
|
|
32847
32862
|
statefulRuleOptions?: pulumi.Input<inputs.networkfirewall.RuleGroupRuleGroupStatefulRuleOptions>;
|
|
32848
32863
|
}
|
|
32864
|
+
interface RuleGroupRuleGroupReferenceSets {
|
|
32865
|
+
ipSetReferences?: pulumi.Input<pulumi.Input<inputs.networkfirewall.RuleGroupRuleGroupReferenceSetsIpSetReference>[]>;
|
|
32866
|
+
}
|
|
32867
|
+
interface RuleGroupRuleGroupReferenceSetsIpSetReference {
|
|
32868
|
+
/**
|
|
32869
|
+
* Set of configuration blocks that define the IP Reference information. See IP Set Reference below for details.
|
|
32870
|
+
*/
|
|
32871
|
+
ipSetReferences: pulumi.Input<pulumi.Input<inputs.networkfirewall.RuleGroupRuleGroupReferenceSetsIpSetReferenceIpSetReference>[]>;
|
|
32872
|
+
/**
|
|
32873
|
+
* A unique alphanumeric string to identify the `ipSet`.
|
|
32874
|
+
*/
|
|
32875
|
+
key: pulumi.Input<string>;
|
|
32876
|
+
}
|
|
32877
|
+
interface RuleGroupRuleGroupReferenceSetsIpSetReferenceIpSetReference {
|
|
32878
|
+
/**
|
|
32879
|
+
* Set of Managed Prefix IP ARN(s)
|
|
32880
|
+
*/
|
|
32881
|
+
referenceArn: pulumi.Input<string>;
|
|
32882
|
+
}
|
|
32849
32883
|
interface RuleGroupRuleGroupRuleVariables {
|
|
32850
32884
|
/**
|
|
32851
32885
|
* Set of configuration blocks that define IP address information. See IP Sets below for details.
|
|
@@ -33489,10 +33523,14 @@ export declare namespace networkmanager {
|
|
|
33489
33523
|
longitude?: pulumi.Input<string>;
|
|
33490
33524
|
}
|
|
33491
33525
|
interface VpcAttachmentOptions {
|
|
33526
|
+
/**
|
|
33527
|
+
* Indicates whether appliance mode is supported. If enabled, traffic flow between a source and destination use the same Availability Zone for the VPC attachment for the lifetime of that flow.
|
|
33528
|
+
*/
|
|
33529
|
+
applianceModeSupport?: pulumi.Input<boolean>;
|
|
33492
33530
|
/**
|
|
33493
33531
|
* Indicates whether IPv6 is supported.
|
|
33494
33532
|
*/
|
|
33495
|
-
ipv6Support
|
|
33533
|
+
ipv6Support?: pulumi.Input<boolean>;
|
|
33496
33534
|
}
|
|
33497
33535
|
}
|
|
33498
33536
|
export declare namespace opensearch {
|
package/types/output.d.ts
CHANGED
|
@@ -10373,7 +10373,7 @@ export declare namespace codebuild {
|
|
|
10373
10373
|
*/
|
|
10374
10374
|
path?: string;
|
|
10375
10375
|
/**
|
|
10376
|
-
*
|
|
10376
|
+
* Authorization type to use. The only valid value is `OAUTH`. This data type is deprecated and is no longer accurate or used. Use the `aws.codebuild.SourceCredential` resource instead.
|
|
10377
10377
|
*/
|
|
10378
10378
|
type: string;
|
|
10379
10379
|
}
|
|
@@ -10383,7 +10383,7 @@ export declare namespace codebuild {
|
|
|
10383
10383
|
*/
|
|
10384
10384
|
combineArtifacts?: boolean;
|
|
10385
10385
|
/**
|
|
10386
|
-
*
|
|
10386
|
+
* Configuration block specifying the restrictions for the batch build. Detailed below.
|
|
10387
10387
|
*/
|
|
10388
10388
|
restrictions?: outputs.codebuild.ProjectBuildBatchConfigRestrictions;
|
|
10389
10389
|
/**
|
|
@@ -10415,7 +10415,7 @@ export declare namespace codebuild {
|
|
|
10415
10415
|
*/
|
|
10416
10416
|
modes?: string[];
|
|
10417
10417
|
/**
|
|
10418
|
-
*
|
|
10418
|
+
* Authorization type to use. The only valid value is `OAUTH`. This data type is deprecated and is no longer accurate or used. Use the `aws.codebuild.SourceCredential` resource instead.
|
|
10419
10419
|
*/
|
|
10420
10420
|
type?: string;
|
|
10421
10421
|
}
|
|
@@ -10449,7 +10449,7 @@ export declare namespace codebuild {
|
|
|
10449
10449
|
*/
|
|
10450
10450
|
registryCredential?: outputs.codebuild.ProjectEnvironmentRegistryCredential;
|
|
10451
10451
|
/**
|
|
10452
|
-
*
|
|
10452
|
+
* Authorization type to use. The only valid value is `OAUTH`. This data type is deprecated and is no longer accurate or used. Use the `aws.codebuild.SourceCredential` resource instead.
|
|
10453
10453
|
*/
|
|
10454
10454
|
type: string;
|
|
10455
10455
|
}
|
|
@@ -10459,7 +10459,7 @@ export declare namespace codebuild {
|
|
|
10459
10459
|
*/
|
|
10460
10460
|
name: string;
|
|
10461
10461
|
/**
|
|
10462
|
-
*
|
|
10462
|
+
* Authorization type to use. The only valid value is `OAUTH`. This data type is deprecated and is no longer accurate or used. Use the `aws.codebuild.SourceCredential` resource instead.
|
|
10463
10463
|
*/
|
|
10464
10464
|
type?: string;
|
|
10465
10465
|
/**
|
|
@@ -10483,7 +10483,7 @@ export declare namespace codebuild {
|
|
|
10483
10483
|
*/
|
|
10484
10484
|
identifier?: string;
|
|
10485
10485
|
/**
|
|
10486
|
-
*
|
|
10486
|
+
* Location of the source code from git or s3.
|
|
10487
10487
|
*/
|
|
10488
10488
|
location?: string;
|
|
10489
10489
|
/**
|
|
@@ -10579,7 +10579,7 @@ export declare namespace codebuild {
|
|
|
10579
10579
|
*/
|
|
10580
10580
|
path?: string;
|
|
10581
10581
|
/**
|
|
10582
|
-
*
|
|
10582
|
+
* Authorization type to use. The only valid value is `OAUTH`. This data type is deprecated and is no longer accurate or used. Use the `aws.codebuild.SourceCredential` resource instead.
|
|
10583
10583
|
*/
|
|
10584
10584
|
type: string;
|
|
10585
10585
|
}
|
|
@@ -10591,7 +10591,7 @@ export declare namespace codebuild {
|
|
|
10591
10591
|
*/
|
|
10592
10592
|
auth?: outputs.codebuild.ProjectSecondarySourceAuth;
|
|
10593
10593
|
/**
|
|
10594
|
-
*
|
|
10594
|
+
* Configuration block that contains information that defines how the build project reports the build status to the source provider. This option is only used when the source provider is `GITHUB`, `GITHUB_ENTERPRISE`, or `BITBUCKET`. `buildStatusConfig` blocks are documented below.
|
|
10595
10595
|
*/
|
|
10596
10596
|
buildStatusConfig?: outputs.codebuild.ProjectSecondarySourceBuildStatusConfig;
|
|
10597
10597
|
/**
|
|
@@ -10623,7 +10623,7 @@ export declare namespace codebuild {
|
|
|
10623
10623
|
*/
|
|
10624
10624
|
sourceIdentifier: string;
|
|
10625
10625
|
/**
|
|
10626
|
-
*
|
|
10626
|
+
* Authorization type to use. The only valid value is `OAUTH`. This data type is deprecated and is no longer accurate or used. Use the `aws.codebuild.SourceCredential` resource instead.
|
|
10627
10627
|
*/
|
|
10628
10628
|
type: string;
|
|
10629
10629
|
}
|
|
@@ -10635,7 +10635,7 @@ export declare namespace codebuild {
|
|
|
10635
10635
|
*/
|
|
10636
10636
|
resource?: string;
|
|
10637
10637
|
/**
|
|
10638
|
-
*
|
|
10638
|
+
* Authorization type to use. The only valid value is `OAUTH`. This data type is deprecated and is no longer accurate or used. Use the `aws.codebuild.SourceCredential` resource instead.
|
|
10639
10639
|
*
|
|
10640
10640
|
* @deprecated Use the aws_codebuild_source_credential resource instead
|
|
10641
10641
|
*/
|
|
@@ -10675,7 +10675,7 @@ export declare namespace codebuild {
|
|
|
10675
10675
|
*/
|
|
10676
10676
|
auth?: outputs.codebuild.ProjectSourceAuth;
|
|
10677
10677
|
/**
|
|
10678
|
-
*
|
|
10678
|
+
* Configuration block that contains information that defines how the build project reports the build status to the source provider. This option is only used when the source provider is `GITHUB`, `GITHUB_ENTERPRISE`, or `BITBUCKET`. `buildStatusConfig` blocks are documented below.
|
|
10679
10679
|
*/
|
|
10680
10680
|
buildStatusConfig?: outputs.codebuild.ProjectSourceBuildStatusConfig;
|
|
10681
10681
|
/**
|
|
@@ -10703,7 +10703,7 @@ export declare namespace codebuild {
|
|
|
10703
10703
|
*/
|
|
10704
10704
|
reportBuildStatus?: boolean;
|
|
10705
10705
|
/**
|
|
10706
|
-
*
|
|
10706
|
+
* Authorization type to use. The only valid value is `OAUTH`. This data type is deprecated and is no longer accurate or used. Use the `aws.codebuild.SourceCredential` resource instead.
|
|
10707
10707
|
*/
|
|
10708
10708
|
type: string;
|
|
10709
10709
|
}
|
|
@@ -10715,7 +10715,7 @@ export declare namespace codebuild {
|
|
|
10715
10715
|
*/
|
|
10716
10716
|
resource?: string;
|
|
10717
10717
|
/**
|
|
10718
|
-
*
|
|
10718
|
+
* Authorization type to use. The only valid value is `OAUTH`. This data type is deprecated and is no longer accurate or used. Use the `aws.codebuild.SourceCredential` resource instead.
|
|
10719
10719
|
*
|
|
10720
10720
|
* @deprecated Use the aws_codebuild_source_credential resource instead
|
|
10721
10721
|
*/
|
|
@@ -12353,6 +12353,7 @@ export declare namespace config {
|
|
|
12353
12353
|
nimble?: string;
|
|
12354
12354
|
nimblestudio?: string;
|
|
12355
12355
|
opensearch?: string;
|
|
12356
|
+
opensearchserverless?: string;
|
|
12356
12357
|
opensearchservice?: string;
|
|
12357
12358
|
opsworks?: string;
|
|
12358
12359
|
opsworkscm?: string;
|
|
@@ -25320,6 +25321,16 @@ export declare namespace gamelift {
|
|
|
25320
25321
|
*/
|
|
25321
25322
|
policyDurationSeconds?: number;
|
|
25322
25323
|
}
|
|
25324
|
+
interface MatchmakingConfigurationGameProperty {
|
|
25325
|
+
/**
|
|
25326
|
+
* A game property key
|
|
25327
|
+
*/
|
|
25328
|
+
key: string;
|
|
25329
|
+
/**
|
|
25330
|
+
* A game property value.
|
|
25331
|
+
*/
|
|
25332
|
+
value: string;
|
|
25333
|
+
}
|
|
25323
25334
|
interface ScriptStorageLocation {
|
|
25324
25335
|
/**
|
|
25325
25336
|
* Name of your S3 bucket.
|
|
@@ -36441,6 +36452,10 @@ export declare namespace networkfirewall {
|
|
|
36441
36452
|
type: string;
|
|
36442
36453
|
}
|
|
36443
36454
|
interface RuleGroupRuleGroup {
|
|
36455
|
+
/**
|
|
36456
|
+
* A configuration block that defines the IP Set References for the rule group. See Reference Sets below for details.
|
|
36457
|
+
*/
|
|
36458
|
+
referenceSets?: outputs.networkfirewall.RuleGroupRuleGroupReferenceSets;
|
|
36444
36459
|
/**
|
|
36445
36460
|
* A configuration block that defines additional settings available to use in the rules defined in the rule group. Can only be specified for **stateful** rule groups. See Rule Variables below for details.
|
|
36446
36461
|
*/
|
|
@@ -36454,6 +36469,25 @@ export declare namespace networkfirewall {
|
|
|
36454
36469
|
*/
|
|
36455
36470
|
statefulRuleOptions?: outputs.networkfirewall.RuleGroupRuleGroupStatefulRuleOptions;
|
|
36456
36471
|
}
|
|
36472
|
+
interface RuleGroupRuleGroupReferenceSets {
|
|
36473
|
+
ipSetReferences?: outputs.networkfirewall.RuleGroupRuleGroupReferenceSetsIpSetReference[];
|
|
36474
|
+
}
|
|
36475
|
+
interface RuleGroupRuleGroupReferenceSetsIpSetReference {
|
|
36476
|
+
/**
|
|
36477
|
+
* Set of configuration blocks that define the IP Reference information. See IP Set Reference below for details.
|
|
36478
|
+
*/
|
|
36479
|
+
ipSetReferences: outputs.networkfirewall.RuleGroupRuleGroupReferenceSetsIpSetReferenceIpSetReference[];
|
|
36480
|
+
/**
|
|
36481
|
+
* A unique alphanumeric string to identify the `ipSet`.
|
|
36482
|
+
*/
|
|
36483
|
+
key: string;
|
|
36484
|
+
}
|
|
36485
|
+
interface RuleGroupRuleGroupReferenceSetsIpSetReferenceIpSetReference {
|
|
36486
|
+
/**
|
|
36487
|
+
* Set of Managed Prefix IP ARN(s)
|
|
36488
|
+
*/
|
|
36489
|
+
referenceArn: string;
|
|
36490
|
+
}
|
|
36457
36491
|
interface RuleGroupRuleGroupRuleVariables {
|
|
36458
36492
|
/**
|
|
36459
36493
|
* Set of configuration blocks that define IP address information. See IP Sets below for details.
|
|
@@ -36994,10 +37028,14 @@ export declare namespace networkmanager {
|
|
|
36994
37028
|
longitude?: string;
|
|
36995
37029
|
}
|
|
36996
37030
|
interface VpcAttachmentOptions {
|
|
37031
|
+
/**
|
|
37032
|
+
* Indicates whether appliance mode is supported. If enabled, traffic flow between a source and destination use the same Availability Zone for the VPC attachment for the lifetime of that flow.
|
|
37033
|
+
*/
|
|
37034
|
+
applianceModeSupport?: boolean;
|
|
36997
37035
|
/**
|
|
36998
37036
|
* Indicates whether IPv6 is supported.
|
|
36999
37037
|
*/
|
|
37000
|
-
ipv6Support
|
|
37038
|
+
ipv6Support?: boolean;
|
|
37001
37039
|
}
|
|
37002
37040
|
}
|
|
37003
37041
|
export declare namespace opensearch {
|