dependabot[bot] opened a new pull request, #238:
URL: https://github.com/apache/cloudstack-terraform-provider/pull/238

   Bumps 
[github.com/hashicorp/terraform-plugin-sdk/v2](https://github.com/hashicorp/terraform-plugin-sdk)
 from 2.33.0 to 2.38.1.
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/hashicorp/terraform-plugin-sdk/releases";>github.com/hashicorp/terraform-plugin-sdk/v2's
 releases</a>.</em></p>
   <blockquote>
   <h2>v2.38.1</h2>
   <p>BUG FIXES:</p>
   <ul>
   <li>all: Prevent identity change validation from raising an error when prior 
identity is empty (all attributes are null) (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-sdk/issues/1527";>#1527</a>)</li>
   </ul>
   <h2>v2.38.0</h2>
   <p>NOTES:</p>
   <ul>
   <li>all: This Go module has been updated to Go 1.24 per the <a 
href="https://go.dev/doc/devel/release#policy";>Go support policy</a>. It is 
recommended to review the <a href="https://go.dev/doc/go1.24";>Go 1.24 release 
notes</a> before upgrading. Any consumers building on earlier Go versions may 
experience errors. (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-sdk/issues/1518";>#1518</a>)</li>
   <li>helper/schema: Update the provider server to handle the ListResource 
RPCs by returning an error since they are not supported by SDKv2. (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-sdk/issues/1521";>#1521</a>)</li>
   <li>helper/schema: Update the provider server to handle Action RPCs by 
returning an error since they are not supported by SDKv2. (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-sdk/issues/1522";>#1522</a>)</li>
   </ul>
   <p>ENHANCEMENTS:</p>
   <ul>
   <li>helper/schema: Added new helper methods for converting Resource and 
Identity schemas to protocol representations. (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-sdk/issues/1504";>#1504</a>)</li>
   <li>helper/schema: Added an additional validation check to ensure the 
resource identity object is not null. (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-sdk/issues/1513";>#1513</a>)</li>
   <li>helper/schema: Added the <code>TfTypeIdentityState()</code> and 
<code>TfTypeResourceState()</code> methods to <code>ResourceData</code> which 
return the identity and state values as a <code>tftypes.Value</code>. (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-sdk/issues/1508";>#1508</a>)</li>
   </ul>
   <h2>v2.37.0</h2>
   <p>NOTES:</p>
   <ul>
   <li>all: This Go module has been updated to Go 1.23 per the <a 
href="https://go.dev/doc/devel/release#policy";>Go support policy</a>. It is 
recommended to review the <a href="https://go.dev/doc/go1.23";>Go 1.23 release 
notes</a> before upgrading. Any consumers building on earlier Go versions may 
experience errors. (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-sdk/issues/1445";>#1445</a>)</li>
   <li>all: This release contains new fields and structs for implmenting 
managed resource identity. Resource identity is data that is defined by a 
separate schema and is stored alongside resource state. Identity data is used 
by Terrform to uniquely identify a remote object and is meant to be immutable 
during the remote object's lifecycle. Resources that support identity can now 
be imported using the <code>identity</code> attribute in Terraform 
configuration <code>import</code> blocks, available in Terraform v1.12+. The 
<code>resource.Identity</code> field on the <code>schema.Resource</code> struct 
can be used to support identity by defining an identity schema. Once the 
identity schema is defined, you can read and store identity data in the state 
file with the new <code>IdentityData</code> struct that is available via the 
<code>Identity()</code> method on <code>schema.ResourceData</code> and 
<code>schema.ResourceDiff</code> structs. (<a 
href="https://redirect.github.com/hashicorp/terr
 aform-plugin-sdk/issues/1444">#1444</a>)</li>
   </ul>
   <p>FEATURES:</p>
   <ul>
   <li>helper/schema: Added new <code>TestResourceDataWithIdentityRaw</code> 
function for creating a <code>ResourceData</code> struct with identity data for 
unit testing. (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-sdk/issues/1475";>#1475</a>)</li>
   <li>helper/schema: Added new <code>Identity</code> field to 
<code>Resource</code> that supports defining an identity schema for managed 
resources only. (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-sdk/issues/1444";>#1444</a>)</li>
   <li>Added new <code>ImportStatePassthroughWithIdentity</code> helper that 
can support both identity and ID importing via a single field. (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-sdk/issues/1474";>#1474</a>)</li>
   </ul>
   <p>ENHANCEMENTS:</p>
   <ul>
   <li>helper/schema: Added <code>RequiredForImport</code> and 
<code>OptionalForImport</code> fields to the <code>Schema</code> struct, which 
are only valid for identity schemas. (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-sdk/issues/1444";>#1444</a>)</li>
   <li>helper/schema: Updated <code>ResourceData</code> to support passing of 
identity data in CRUD and import functions for managed resources. (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-sdk/issues/1444";>#1444</a>)</li>
   </ul>
   <p>BUG FIXES:</p>
   <ul>
   <li>helper/schema: Fixed bug that blocked write-only attributes from being 
used with resources without update functions. (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-sdk/issues/1472";>#1472</a>)</li>
   </ul>
   <h2>v2.37.0-beta.1</h2>
   <p>NOTES:</p>
   <ul>
   <li>This beta pre-release continues the implementation of managed resource 
identity, which should now be used with Terraform v1.12.0-beta2. Managed 
resources now can support import by identity during plan and apply workflows. 
Managed resources that already support import via the 
<code>schema.Resource.Importer</code> field still need to set an ID during 
import when an identity is provided. The <code>RequiredForImport</code> and 
<code>OptionalForImport</code> fields on the identity schema can be used to 
control the validation that Terraform core will apply to the import config 
block. (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-sdk/issues/1463";>#1463</a>)</li>
   </ul>
   <h2>v2.37.0-alpha.1</h2>
   <p>NOTES:</p>
   <ul>
   <li>all: This Go module has been updated to Go 1.23 per the <a 
href="https://go.dev/doc/devel/release#policy";>Go support policy</a>. It is 
recommended to review the <a href="https://go.dev/doc/go1.23";>Go 1.23 release 
notes</a> before upgrading. Any consumers building on earlier Go versions may 
experience errors. (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-sdk/issues/1445";>#1445</a>)</li>
   <li>This alpha pre-release contains an initial implementation for managed 
resource identity, which can used with Terraform v1.12.0-alpha20250319, to 
store and read identity data during plan and apply workflows. A managed 
resource identity can be used by defining an identity schema in the 
<code>resource.Identity</code> field. Once the identity schema is defined, you 
can read and store identity data in the new IdentityData struct that is 
available via the new <code>Identity()</code> method on ResourceData and 
ResourceDiff structs. (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-sdk/issues/1444";>#1444</a>)</li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/hashicorp/terraform-plugin-sdk/blob/main/CHANGELOG.md";>github.com/hashicorp/terraform-plugin-sdk/v2's
 changelog</a>.</em></p>
   <blockquote>
   <h2>2.38.1 (September 22, 2025)</h2>
   <p>BUG FIXES:</p>
   <ul>
   <li>all: Prevent identity change validation from raising an error when prior 
identity is empty (all attributes are null) (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-sdk/issues/1527";>#1527</a>)</li>
   </ul>
   <h2>2.38.0 (September 17, 2025)</h2>
   <p>NOTES:</p>
   <ul>
   <li>all: This Go module has been updated to Go 1.24 per the <a 
href="https://go.dev/doc/devel/release#policy";>Go support policy</a>. It is 
recommended to review the <a href="https://go.dev/doc/go1.24";>Go 1.24 release 
notes</a> before upgrading. Any consumers building on earlier Go versions may 
experience errors. (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-sdk/issues/1518";>#1518</a>)</li>
   <li>helper/schema: Update the provider server to handle the ListResource 
RPCs by returning an error since they are not supported by SDKv2. (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-sdk/issues/1521";>#1521</a>)</li>
   <li>helper/schema: Update the provider server to handle Action RPCs by 
returning an error since they are not supported by SDKv2. (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-sdk/issues/1522";>#1522</a>)</li>
   </ul>
   <p>ENHANCEMENTS:</p>
   <ul>
   <li>helper/schema: Added new helper methods for converting Resource and 
Identity schemas to protocol representations. (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-sdk/issues/1504";>#1504</a>)</li>
   <li>helper/schema: Added an additional validation check to ensure the 
resource identity object is not null. (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-sdk/issues/1513";>#1513</a>)</li>
   <li>helper/schema: Added the <code>TfTypeIdentityState()</code> and 
<code>TfTypeResourceState()</code> methods to <code>ResourceData</code> which 
return the identity and state values as a <code>tftypes.Value</code>. (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-sdk/issues/1508";>#1508</a>)</li>
   </ul>
   <h2>2.37.0 (May 16, 2025)</h2>
   <p>NOTES:</p>
   <ul>
   <li>all: This Go module has been updated to Go 1.23 per the <a 
href="https://go.dev/doc/devel/release#policy";>Go support policy</a>. It is 
recommended to review the <a href="https://go.dev/doc/go1.23";>Go 1.23 release 
notes</a> before upgrading. Any consumers building on earlier Go versions may 
experience errors. (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-sdk/issues/1445";>#1445</a>)</li>
   <li>all: This release contains new fields and structs for implmenting 
managed resource identity. Resource identity is data that is defined by a 
separate schema and is stored alongside resource state. Identity data is used 
by Terrform to uniquely identify a remote object and is meant to be immutable 
during the remote object's lifecycle. Resources that support identity can now 
be imported using the <code>identity</code> attribute in Terraform 
configuration <code>import</code> blocks, available in Terraform v1.12+. The 
<code>resource.Identity</code> field on the <code>schema.Resource</code> struct 
can be used to support identity by defining an identity schema. Once the 
identity schema is defined, you can read and store identity data in the state 
file with the new <code>IdentityData</code> struct that is available via the 
<code>Identity()</code> method on <code>schema.ResourceData</code> and 
<code>schema.ResourceDiff</code> structs. (<a 
href="https://redirect.github.com/hashicorp/terr
 aform-plugin-sdk/issues/1444">#1444</a>)</li>
   </ul>
   <p>FEATURES:</p>
   <ul>
   <li>helper/schema: Added new <code>TestResourceDataWithIdentityRaw</code> 
function for creating a <code>ResourceData</code> struct with identity data for 
unit testing. (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-sdk/issues/1475";>#1475</a>)</li>
   <li>helper/schema: Added new <code>Identity</code> field to 
<code>Resource</code> that supports defining an identity schema for managed 
resources only. (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-sdk/issues/1444";>#1444</a>)</li>
   <li>Added new <code>ImportStatePassthroughWithIdentity</code> helper that 
can support both identity and ID importing via a single field. (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-sdk/issues/1474";>#1474</a>)</li>
   </ul>
   <p>ENHANCEMENTS:</p>
   <ul>
   <li>helper/schema: Added <code>RequiredForImport</code> and 
<code>OptionalForImport</code> fields to the <code>Schema</code> struct, which 
are only valid for identity schemas. (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-sdk/issues/1444";>#1444</a>)</li>
   <li>helper/schema: Updated <code>ResourceData</code> to support passing of 
identity data in CRUD and import functions for managed resources. (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-sdk/issues/1444";>#1444</a>)</li>
   </ul>
   <p>BUG FIXES:</p>
   <ul>
   <li>helper/schema: Fixed bug that blocked write-only attributes from being 
used with resources without update functions. (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-sdk/issues/1472";>#1472</a>)</li>
   </ul>
   <h2>2.37.0-beta.1 (April 18, 2025)</h2>
   <p>NOTES:</p>
   <ul>
   <li>This beta pre-release continues the implementation of managed resource 
identity, which should now be used with Terraform v1.12.0-beta2. Managed 
resources now can support import by identity during plan and apply workflows. 
Managed resources that already support import via the 
<code>schema.Resource.Importer</code> field still need to set an ID during 
import when an identity is provided. The <code>RequiredForImport</code> and 
<code>OptionalForImport</code> fields on the identity schema can be used to 
control the validation that Terraform core will apply to the import config 
block. (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-sdk/issues/1463";>#1463</a>)</li>
   </ul>
   <h2>2.37.0-alpha.1 (March 20, 2025)</h2>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/hashicorp/terraform-plugin-sdk/commit/cada9f39b0a039e7f6b07ebe21466f20b48bba7d";><code>cada9f3</code></a>
 Update changelog</li>
   <li><a 
href="https://github.com/hashicorp/terraform-plugin-sdk/commit/66bbff0a5173fef2314396f903bd0930fae28244";><code>66bbff0</code></a>
 Update meta package SDKVersion</li>
   <li><a 
href="https://github.com/hashicorp/terraform-plugin-sdk/commit/f5ba712d8e188325cc2887ef92945e9b610f5cc5";><code>f5ba712</code></a>
 identity: Update change validation to ensure empty identities (all null 
attri...</li>
   <li><a 
href="https://github.com/hashicorp/terraform-plugin-sdk/commit/ef9dd9f7007a088f3522ab3be75ac6131e4cfa7b";><code>ef9dd9f</code></a>
 Update changelog</li>
   <li><a 
href="https://github.com/hashicorp/terraform-plugin-sdk/commit/9163250695bc3e5d9ea62856ecc16e71256c0fee";><code>9163250</code></a>
 Update meta package SDKVersion</li>
   <li><a 
href="https://github.com/hashicorp/terraform-plugin-sdk/commit/7a87b043242455daf503345c8930e47499a6fa24";><code>7a87b04</code></a>
 build(deps): bump github.com/hashicorp/terraform-plugin-go (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-sdk/issues/1526";>#1526</a>)</li>
   <li><a 
href="https://github.com/hashicorp/terraform-plugin-sdk/commit/fdc4a146ad237ab8e9af6ce651aed83410c88bab";><code>fdc4a14</code></a>
 build(deps): bump github.com/hashicorp/terraform-json (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-sdk/issues/1523";>#1523</a>)</li>
   <li><a 
href="https://github.com/hashicorp/terraform-plugin-sdk/commit/d8ee71926117b2c662d875f6fb54f83fefaa8444";><code>d8ee719</code></a>
 action: Implement error returning for action RPCs (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-sdk/issues/1522";>#1522</a>)</li>
   <li><a 
href="https://github.com/hashicorp/terraform-plugin-sdk/commit/183e62bdf96cadb529af3c159cba96f08d3ef9ca";><code>183e62b</code></a>
 list: implement list RPCs (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-sdk/issues/1521";>#1521</a>)</li>
   <li><a 
href="https://github.com/hashicorp/terraform-plugin-sdk/commit/24a3c3e37bbf43ecdd24cc9d888fabb40c99156a";><code>24a3c3e</code></a>
 build(deps): bump golang.org/x/crypto from 0.41.0 to 0.42.0 (<a 
href="https://redirect.github.com/hashicorp/terraform-plugin-sdk/issues/1519";>#1519</a>)</li>
   <li>Additional commits viewable in <a 
href="https://github.com/hashicorp/terraform-plugin-sdk/compare/v2.33.0...v2.38.1";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/hashicorp/terraform-plugin-sdk/v2&package-manager=go_modules&previous-version=2.33.0&new-version=2.38.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   <details>
   <summary>Dependabot commands and options</summary>
   <br />
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot show <dependency name> ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   </details>


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to