@pulumi/aws-native 0.126.0 → 1.0.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/README.md CHANGED
@@ -1,17 +1,15 @@
1
- # Pulumi AWS Native Provider (preview)
1
+ # Pulumi AWS Cloud Control Provider
2
2
 
3
- The Pulumi AWS Native Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt).
4
- With AWS Native, you get same-day access to all new AWS resources and all new properties on existing resources supported by the Cloud Control API.
5
- You can use AWS Native from a Pulumi program written in any Pulumi language: C#, Go, JavaScript/TypeScript, and Python.
3
+ The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt).
4
+ With Pulumi's native provider for AWS Cloud Control, you get same-day access to all new AWS resources and all new properties on existing resources supported by the Cloud Control API.
5
+ You can use the AWS Cloud Control provider from a Pulumi program written in any Pulumi language: C#, Go, JavaScript/TypeScript, and Python.
6
6
  You'll need to [install and configure the Pulumi CLI](https://pulumi.com/docs/get-started/install) if you haven't already.
7
7
 
8
8
  ---
9
9
  > [!NOTE]
10
- > AWS Native is in public preview.
11
10
  > This provider covers all resources as supported by the [AWS Cloud Control API](https://aws.amazon.com/cloudcontrolapi/). This does not yet include all AWS resources. See the [list of supported resources](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt) for full details.
12
11
 
13
- For new projects, we recommend using AWS Native and [AWS Classic](https://github.com/pulumi/pulumi-aws) side-by-side so you can get the speed and correctness benefits of AWS Native where possible.
14
- For existing projects, AWS Classic remains fully supported; at this time, we recommend waiting to migrate existing projects to AWS Native.
12
+ For new projects, we recommend starting with our primary [AWS Provider](https://github.com/pulumi/pulumi-aws) and adding AWS Cloud Control resources on an as needed basis.
15
13
 
16
14
  ---
17
15
 
package/package.json CHANGED
@@ -1,10 +1,12 @@
1
1
  {
2
2
  "name": "@pulumi/aws-native",
3
- "version": "0.126.0",
3
+ "version": "1.0.0",
4
4
  "keywords": [
5
5
  "pulumi",
6
6
  "aws",
7
7
  "aws-native",
8
+ "cloud control",
9
+ "ccapi",
8
10
  "category/cloud",
9
11
  "kind/native"
10
12
  ],
@@ -13,7 +15,7 @@
13
15
  "license": "Apache-2.0",
14
16
  "scripts": {
15
17
  "build": "tsc",
16
- "install": "node scripts/install-pulumi-plugin.js resource aws-native 0.126.0"
18
+ "install": "node scripts/install-pulumi-plugin.js resource aws-native 1.0.0"
17
19
  },
18
20
  "dependencies": {
19
21
  "@pulumi/pulumi": "^3.133.0"
@@ -25,6 +27,6 @@
25
27
  "pulumi": {
26
28
  "resource": true,
27
29
  "name": "aws-native",
28
- "version": "0.126.0"
30
+ "version": "1.0.0"
29
31
  }
30
32
  }
package/package.json.dev CHANGED
@@ -1,10 +1,12 @@
1
1
  {
2
2
  "name": "@pulumi/aws-native",
3
- "version": "0.126.0",
3
+ "version": "1.0.0",
4
4
  "keywords": [
5
5
  "pulumi",
6
6
  "aws",
7
7
  "aws-native",
8
+ "cloud control",
9
+ "ccapi",
8
10
  "category/cloud",
9
11
  "kind/native"
10
12
  ],
@@ -24,6 +26,6 @@
24
26
  "pulumi": {
25
27
  "resource": true,
26
28
  "name": "aws-native",
27
- "version": "0.126.0"
29
+ "version": "1.0.0"
28
30
  }
29
31
  }
package/provider.d.ts CHANGED
@@ -2,7 +2,7 @@ import * as pulumi from "@pulumi/pulumi";
2
2
  import * as inputs from "./types/input";
3
3
  import { Region } from "./index";
4
4
  /**
5
- * The provider type for the AWS native package. By default, resources use package-wide configuration settings, however an explicit `Provider` instance may be created and passed during resource construction to achieve fine-grained programmatic control over provider settings. See the [documentation](https://www.pulumi.com/docs/reference/programming-model/#providers) for more information.
5
+ * The provider type for the AWS Cloud Control package. By default, resources use package-wide configuration settings, however an explicit `Provider` instance may be created and passed during resource construction to achieve fine-grained programmatic control over provider settings. See the [documentation](https://www.pulumi.com/docs/reference/programming-model/#providers) for more information.
6
6
  */
7
7
  export declare class Provider extends pulumi.ProviderResource {
8
8
  /**
package/provider.js CHANGED
@@ -6,7 +6,7 @@ exports.Provider = void 0;
6
6
  const pulumi = require("@pulumi/pulumi");
7
7
  const utilities = require("./utilities");
8
8
  /**
9
- * The provider type for the AWS native package. By default, resources use package-wide configuration settings, however an explicit `Provider` instance may be created and passed during resource construction to achieve fine-grained programmatic control over provider settings. See the [documentation](https://www.pulumi.com/docs/reference/programming-model/#providers) for more information.
9
+ * The provider type for the AWS Cloud Control package. By default, resources use package-wide configuration settings, however an explicit `Provider` instance may be created and passed during resource construction to achieve fine-grained programmatic control over provider settings. See the [documentation](https://www.pulumi.com/docs/reference/programming-model/#providers) for more information.
10
10
  */
11
11
  class Provider extends pulumi.ProviderResource {
12
12
  /**