Skip to content

Update pulumi V2 #7323

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 11 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ All [input](#inputs) properties are implicitly available as output properties. A
<a data-swiftype-name="resource-property" data-swiftype-type="text" href="#id_python" style="color: inherit; text-decoration: inherit;">id</a>
</span>
<span class="property-indicator"></span>
<span class="property-type">str</span>
<span class="property-type">builtins.str</span>
</dt>
<dd>The provider-assigned unique ID for this managed resource.</dd></dl>
</pulumi-choosable>
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ All [input](#inputs) properties are implicitly available as output properties. A
<a data-swiftype-name="resource-property" data-swiftype-type="text" href="#id_python" style="color: inherit; text-decoration: inherit;">id</a>
</span>
<span class="property-indicator"></span>
<span class="property-type">str</span>
<span class="property-type">builtins.str</span>
</dt>
<dd>The provider-assigned unique ID for this managed resource.</dd></dl>
</pulumi-choosable>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -206,8 +206,8 @@ Resources are created with functions called constructors. To learn more about de
<span class=nd>@overload</span>
<span class="k">def </span><span class="nx">RandomBytes</span><span class="p">(</span><span class="nx">resource_name</span><span class="p">:</span> <span class="nx">str</span><span class="p">,</span>
<span class="nx">opts</span><span class="p">:</span> <span class="nx"><a href="/docs/reference/pkg/python/pulumi/#pulumi.ResourceOptions">Optional[ResourceOptions]</a></span> = None<span class="p">,</span>
<span class="nx">length</span><span class="p">:</span> <span class="nx">Optional[int]</span> = None<span class="p">,</span>
<span class="nx">keepers</span><span class="p">:</span> <span class="nx">Optional[Mapping[str, str]]</span> = None<span class="p">)</span></code></pre></div>
<span class="nx">length</span><span class="p">:</span> <span class="nx">Optional[builtins.int]</span> = None<span class="p">,</span>
<span class="nx">keepers</span><span class="p">:</span> <span class="nx">Optional[Mapping[str, builtins.str]]</span> = None<span class="p">)</span></code></pre></div>
</div></pulumi-choosable>
</div>

Expand Down Expand Up @@ -597,15 +597,15 @@ The RandomBytes resource accepts the following [input](/docs/intro/concepts/inpu
<a data-swiftype-name="resource-property" data-swiftype-type="text" href="#length_python" style="color: inherit; text-decoration: inherit;">length</a>
</span>
<span class="property-indicator"></span>
<span class="property-type">int</span>
<span class="property-type">builtins.int</span>
</dt>
<dd>The number of bytes requested. The minimum value for length is 1.</dd><dt class="property-optional"
title="Optional">
<span id="keepers_python">
<a data-swiftype-name="resource-property" data-swiftype-type="text" href="#keepers_python" style="color: inherit; text-decoration: inherit;">keepers</a>
</span>
<span class="property-indicator"></span>
<span class="property-type">Mapping[str, str]</span>
<span class="property-type">Mapping[str, builtins.str]</span>
</dt>
<dd>Arbitrary map of values that, when changed, will trigger recreation of resource. See the main provider documentation for more information.</dd></dl>
</pulumi-choosable>
Expand Down Expand Up @@ -768,23 +768,23 @@ All [input](#inputs) properties are implicitly available as output properties. A
<a data-swiftype-name="resource-property" data-swiftype-type="text" href="#base64_python" style="color: inherit; text-decoration: inherit;">base64</a>
</span>
<span class="property-indicator"></span>
<span class="property-type">str</span>
<span class="property-type">builtins.str</span>
</dt>
<dd>The generated bytes presented in base64 string format.</dd><dt class="property-"
title="">
<span id="hex_python">
<a data-swiftype-name="resource-property" data-swiftype-type="text" href="#hex_python" style="color: inherit; text-decoration: inherit;">hex</a>
</span>
<span class="property-indicator"></span>
<span class="property-type">str</span>
<span class="property-type">builtins.str</span>
</dt>
<dd>The generated bytes presented in lowercase hexadecimal string format. The length of the encoded string is exactly twice the <code>length</code> parameter.</dd><dt class="property-"
title="">
<span id="id_python">
<a data-swiftype-name="resource-property" data-swiftype-type="text" href="#id_python" style="color: inherit; text-decoration: inherit;">id</a>
</span>
<span class="property-indicator"></span>
<span class="property-type">str</span>
<span class="property-type">builtins.str</span>
</dt>
<dd>The provider-assigned unique ID for this managed resource.</dd></dl>
</pulumi-choosable>
Expand Down Expand Up @@ -841,10 +841,10 @@ Get an existing RandomBytes resource's state with the given name, ID, and option
<span class="k">def </span><span class="nf">get</span><span class="p">(</span><span class="nx">resource_name</span><span class="p">:</span> <span class="nx">str</span><span class="p">,</span>
<span class="nx">id</span><span class="p">:</span> <span class="nx">str</span><span class="p">,</span>
<span class="nx">opts</span><span class="p">:</span> <span class="nx"><a href="/docs/reference/pkg/python/pulumi/#pulumi.ResourceOptions">Optional[ResourceOptions]</a></span> = None<span class="p">,</span>
<span class="nx">base64</span><span class="p">:</span> <span class="nx">Optional[str]</span> = None<span class="p">,</span>
<span class="nx">hex</span><span class="p">:</span> <span class="nx">Optional[str]</span> = None<span class="p">,</span>
<span class="nx">keepers</span><span class="p">:</span> <span class="nx">Optional[Mapping[str, str]]</span> = None<span class="p">,</span>
<span class="nx">length</span><span class="p">:</span> <span class="nx">Optional[int]</span> = None<span class="p">) -&gt;</span> RandomBytes</code></pre></div>
<span class="nx">base64</span><span class="p">:</span> <span class="nx">Optional[builtins.str]</span> = None<span class="p">,</span>
<span class="nx">hex</span><span class="p">:</span> <span class="nx">Optional[builtins.str]</span> = None<span class="p">,</span>
<span class="nx">keepers</span><span class="p">:</span> <span class="nx">Optional[Mapping[str, builtins.str]]</span> = None<span class="p">,</span>
<span class="nx">length</span><span class="p">:</span> <span class="nx">Optional[builtins.int]</span> = None<span class="p">) -&gt;</span> RandomBytes</code></pre></div>
</div></pulumi-choosable>
</div>

Expand Down Expand Up @@ -1174,31 +1174,31 @@ The following state arguments are supported:
<a data-swiftype-name="resource-property" data-swiftype-type="text" href="#state_base64_python" style="color: inherit; text-decoration: inherit;">base64</a>
</span>
<span class="property-indicator"></span>
<span class="property-type">str</span>
<span class="property-type">builtins.str</span>
</dt>
<dd>The generated bytes presented in base64 string format.</dd><dt class="property-optional"
title="Optional">
<span id="state_hex_python">
<a data-swiftype-name="resource-property" data-swiftype-type="text" href="#state_hex_python" style="color: inherit; text-decoration: inherit;">hex</a>
</span>
<span class="property-indicator"></span>
<span class="property-type">str</span>
<span class="property-type">builtins.str</span>
</dt>
<dd>The generated bytes presented in lowercase hexadecimal string format. The length of the encoded string is exactly twice the <code>length</code> parameter.</dd><dt class="property-optional"
title="Optional">
<span id="state_keepers_python">
<a data-swiftype-name="resource-property" data-swiftype-type="text" href="#state_keepers_python" style="color: inherit; text-decoration: inherit;">keepers</a>
</span>
<span class="property-indicator"></span>
<span class="property-type">Mapping[str, str]</span>
<span class="property-type">Mapping[str, builtins.str]</span>
</dt>
<dd>Arbitrary map of values that, when changed, will trigger recreation of resource. See the main provider documentation for more information.</dd><dt class="property-optional"
title="Optional">
<span id="state_length_python">
<a data-swiftype-name="resource-property" data-swiftype-type="text" href="#state_length_python" style="color: inherit; text-decoration: inherit;">length</a>
</span>
<span class="property-indicator"></span>
<span class="property-type">int</span>
<span class="property-type">builtins.int</span>
</dt>
<dd>The number of bytes requested. The minimum value for length is 1.</dd></dl>
</pulumi-choosable>
Expand Down
Loading
Loading