pulumi-command 1.2.0a1757732452__py3-none-any.whl → 1.2.0a1767991068__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.
- pulumi_command/local/command.py +0 -4
- pulumi_command/pulumi-plugin.json +1 -1
- pulumi_command/remote/command.py +0 -4
- pulumi_command/remote/copy_to_remote.py +2 -2
- {pulumi_command-1.2.0a1757732452.dist-info → pulumi_command-1.2.0a1767991068.dist-info}/METADATA +1 -1
- {pulumi_command-1.2.0a1757732452.dist-info → pulumi_command-1.2.0a1767991068.dist-info}/RECORD +8 -8
- {pulumi_command-1.2.0a1757732452.dist-info → pulumi_command-1.2.0a1767991068.dist-info}/WHEEL +0 -0
- {pulumi_command-1.2.0a1757732452.dist-info → pulumi_command-1.2.0a1767991068.dist-info}/top_level.txt +0 -0
pulumi_command/local/command.py
CHANGED
|
@@ -149,8 +149,6 @@ class CommandArgs:
|
|
|
149
149
|
|
|
150
150
|
The environment variables `PULUMI_COMMAND_STDOUT` and `PULUMI_COMMAND_STDERR` are set to the `stdout` and `stderr` properties of the Command resource from previous create or update steps.
|
|
151
151
|
"""
|
|
152
|
-
if add_previous_output_in_env is None:
|
|
153
|
-
add_previous_output_in_env = True
|
|
154
152
|
if add_previous_output_in_env is not None:
|
|
155
153
|
pulumi.set(__self__, "add_previous_output_in_env", add_previous_output_in_env)
|
|
156
154
|
if archive_paths is not None:
|
|
@@ -787,8 +785,6 @@ class Command(pulumi.CustomResource):
|
|
|
787
785
|
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
788
786
|
__props__ = CommandArgs.__new__(CommandArgs)
|
|
789
787
|
|
|
790
|
-
if add_previous_output_in_env is None:
|
|
791
|
-
add_previous_output_in_env = True
|
|
792
788
|
__props__.__dict__["add_previous_output_in_env"] = add_previous_output_in_env
|
|
793
789
|
__props__.__dict__["archive_paths"] = archive_paths
|
|
794
790
|
__props__.__dict__["asset_paths"] = asset_paths
|
pulumi_command/remote/command.py
CHANGED
|
@@ -73,8 +73,6 @@ class CommandArgs:
|
|
|
73
73
|
The environment variables `PULUMI_COMMAND_STDOUT` and `PULUMI_COMMAND_STDERR` are set to the `stdout` and `stderr` properties of the Command resource from previous create or update steps.
|
|
74
74
|
"""
|
|
75
75
|
pulumi.set(__self__, "connection", connection)
|
|
76
|
-
if add_previous_output_in_env is None:
|
|
77
|
-
add_previous_output_in_env = True
|
|
78
76
|
if add_previous_output_in_env is not None:
|
|
79
77
|
pulumi.set(__self__, "add_previous_output_in_env", add_previous_output_in_env)
|
|
80
78
|
if create is not None:
|
|
@@ -436,8 +434,6 @@ class Command(pulumi.CustomResource):
|
|
|
436
434
|
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
437
435
|
__props__ = CommandArgs.__new__(CommandArgs)
|
|
438
436
|
|
|
439
|
-
if add_previous_output_in_env is None:
|
|
440
|
-
add_previous_output_in_env = True
|
|
441
437
|
__props__.__dict__["add_previous_output_in_env"] = add_previous_output_in_env
|
|
442
438
|
if connection is None and not opts.urn:
|
|
443
439
|
raise TypeError("Missing required property 'connection'")
|
|
@@ -123,7 +123,7 @@ class CopyToRemote(pulumi.CustomResource):
|
|
|
123
123
|
conn = command.remote.ConnectionArgs(
|
|
124
124
|
host = server_public_ip,
|
|
125
125
|
user = user_name,
|
|
126
|
-
|
|
126
|
+
private_key = private_key,
|
|
127
127
|
)
|
|
128
128
|
|
|
129
129
|
# Copy the files to the remote.
|
|
@@ -182,7 +182,7 @@ class CopyToRemote(pulumi.CustomResource):
|
|
|
182
182
|
conn = command.remote.ConnectionArgs(
|
|
183
183
|
host = server_public_ip,
|
|
184
184
|
user = user_name,
|
|
185
|
-
|
|
185
|
+
private_key = private_key,
|
|
186
186
|
)
|
|
187
187
|
|
|
188
188
|
# Copy the files to the remote.
|
{pulumi_command-1.2.0a1757732452.dist-info → pulumi_command-1.2.0a1767991068.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pulumi_command
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.0a1767991068
|
|
4
4
|
Summary: The Pulumi Command Provider enables you to execute commands and scripts either locally or remotely as part of the Pulumi resource model.
|
|
5
5
|
License: Apache-2.0
|
|
6
6
|
Project-URL: Homepage, https://pulumi.com
|
{pulumi_command-1.2.0a1757732452.dist-info → pulumi_command-1.2.0a1767991068.dist-info}/RECORD
RENAMED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
pulumi_command/__init__.py,sha256=CO0U3PNCVoK0mbQ5whiloHgcb2Hv1PxTGEZWrc2LLEs,1185
|
|
2
2
|
pulumi_command/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
|
|
3
3
|
pulumi_command/provider.py,sha256=PteBsmm2xUwNz252vXx4eiKn8zcMxcka_kDC64hqqec,2973
|
|
4
|
-
pulumi_command/pulumi-plugin.json,sha256=
|
|
4
|
+
pulumi_command/pulumi-plugin.json,sha256=9hjXPM4HvwPTcQxEyMtEviPN_VMeSPR-hLB7lFjOJds,83
|
|
5
5
|
pulumi_command/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
6
|
pulumi_command/local/__init__.py,sha256=0ytK9Yd7mTyvbjiNJKTdzGcIgvYwS79Elz48t8eK9ow,344
|
|
7
7
|
pulumi_command/local/_enums.py,sha256=iaXpXctekXd1Es_MTM6E2w5hnDPfzvOh0W8XpigzQGg,654
|
|
8
|
-
pulumi_command/local/command.py,sha256=
|
|
8
|
+
pulumi_command/local/command.py,sha256=rO5DpIsDLYRa_hcHydC9oPsdGxncApTtnYZO8EZCnVQ,46048
|
|
9
9
|
pulumi_command/local/run.py,sha256=OakMZ0Qelzrw6wSOIQfyOFZAa4mMjdTbd6bj0OojMSg,22898
|
|
10
10
|
pulumi_command/remote/__init__.py,sha256=nr8w54qzdQD-VsBKNsby6ebfVLgEuCBkV9l1b59NAeE,425
|
|
11
11
|
pulumi_command/remote/_enums.py,sha256=1f00efvpYAjhVeI2yGQ-WEvSQkQm_Cl7VNzlbuzqCiw,655
|
|
12
12
|
pulumi_command/remote/_inputs.py,sha256=CRMw-iZ2xWxgyKBaBQtKS4kIYG469uL8MmapqNse5V0,20477
|
|
13
|
-
pulumi_command/remote/command.py,sha256=
|
|
13
|
+
pulumi_command/remote/command.py,sha256=qq4K5Gy9VSoPgh8UNy_8OhfNtFc35bFWOL25iAd8NKQ,28280
|
|
14
14
|
pulumi_command/remote/copy_file.py,sha256=tcPXe2UomrVgarOHSD1cRZG0JeEomyQbeLiEjkJS2Rw,9635
|
|
15
|
-
pulumi_command/remote/copy_to_remote.py,sha256=
|
|
15
|
+
pulumi_command/remote/copy_to_remote.py,sha256=NG5t6Xi6_VtekUNQGe5-enbJMfYyAsLvT-uworblhmI,15324
|
|
16
16
|
pulumi_command/remote/outputs.py,sha256=TjBzRGqknAhvRElLqr6lU6WDSeRUlZWiBy9xFrBrO58,14658
|
|
17
|
-
pulumi_command-1.2.
|
|
18
|
-
pulumi_command-1.2.
|
|
19
|
-
pulumi_command-1.2.
|
|
20
|
-
pulumi_command-1.2.
|
|
17
|
+
pulumi_command-1.2.0a1767991068.dist-info/METADATA,sha256=t_azgH0KNoIrXz0fq5QNhpElnqyTh8Rus3gtuR8wQsY,16168
|
|
18
|
+
pulumi_command-1.2.0a1767991068.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
19
|
+
pulumi_command-1.2.0a1767991068.dist-info/top_level.txt,sha256=9M511kLm0IQF3I3ZuoV79i50MmDHaRXi4uDOdZnq8Qs,15
|
|
20
|
+
pulumi_command-1.2.0a1767991068.dist-info/RECORD,,
|
{pulumi_command-1.2.0a1757732452.dist-info → pulumi_command-1.2.0a1767991068.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|