@pulumi/digitalocean 4.64.0 → 4.64.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/digitalocean",
3
- "version": "4.64.0",
3
+ "version": "4.64.1",
4
4
  "description": "A Pulumi package for creating and managing DigitalOcean cloud resources.",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -22,6 +22,6 @@
22
22
  "pulumi": {
23
23
  "resource": true,
24
24
  "name": "digitalocean",
25
- "version": "4.64.0"
25
+ "version": "4.64.1"
26
26
  }
27
27
  }
package/types/input.d.ts CHANGED
@@ -2125,6 +2125,10 @@ export interface DedicatedInferenceModelDeployment {
2125
2125
  * The slug identifier for the model to deploy.
2126
2126
  */
2127
2127
  modelSlug: pulumi.Input<string>;
2128
+ /**
2129
+ * The provider-specific model ID. Required when modelProvider is 'hugging_face', optional for 'modelcatalog'.
2130
+ */
2131
+ providerModelId?: pulumi.Input<string>;
2128
2132
  }
2129
2133
  export interface DedicatedInferenceModelDeploymentAccelerator {
2130
2134
  /**
package/types/output.d.ts CHANGED
@@ -2124,6 +2124,10 @@ export interface DedicatedInferenceModelDeployment {
2124
2124
  * The slug identifier for the model to deploy.
2125
2125
  */
2126
2126
  modelSlug: string;
2127
+ /**
2128
+ * The provider-specific model ID. Required when modelProvider is 'hugging_face', optional for 'modelcatalog'.
2129
+ */
2130
+ providerModelId: string;
2127
2131
  }
2128
2132
  export interface DedicatedInferenceModelDeploymentAccelerator {
2129
2133
  /**
@@ -5427,6 +5431,10 @@ export interface GetDedicatedInferenceModelDeployment {
5427
5431
  * The slug identifier for the model.
5428
5432
  */
5429
5433
  modelSlug: string;
5434
+ /**
5435
+ * The provider-specific model ID.
5436
+ */
5437
+ providerModelId: string;
5430
5438
  }
5431
5439
  export interface GetDedicatedInferenceModelDeploymentAccelerator {
5432
5440
  /**
@@ -5573,6 +5581,10 @@ export interface GetDedicatedInferencesDedicatedInference {
5573
5581
  * The fully-qualified domain name of the private endpoint.
5574
5582
  */
5575
5583
  privateEndpointFqdn: string;
5584
+ /**
5585
+ * The list of provider model IDs for the dedicated inference endpoint.
5586
+ */
5587
+ providerModelIds: string[];
5576
5588
  /**
5577
5589
  * The fully-qualified domain name of the public endpoint, if enabled.
5578
5590
  */