ibm 1.85.0 published on Sunday, Nov 9, 2025 by ibm-cloud
ibm 1.85.0 published on Sunday, Nov 9, 2025 by ibm-cloud
Provides a read-only data source for Share. You can then reference the fields of the data source in other resources within the same configuration using interpolation syntax.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as ibm from "@pulumi/ibm";
const exampleIsVpc = new ibm.IsVpc("example", {name: "example-vpc"});
const exampleIsShare = new ibm.IsShare("example", {
name: "example-share",
size: 200,
profile: "dp2",
zone: "us-south-2",
});
const example = ibm.getIsShareOutput({
share: exampleIsShare.isShareId,
});
const example1 = ibm.getIsShareOutput({
name: exampleIsShare.name,
});
import pulumi
import pulumi_ibm as ibm
example_is_vpc = ibm.IsVpc("example", name="example-vpc")
example_is_share = ibm.IsShare("example",
name="example-share",
size=200,
profile="dp2",
zone="us-south-2")
example = ibm.get_is_share_output(share=example_is_share.is_share_id)
example1 = ibm.get_is_share_output(name=example_is_share.name)
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/ibm/ibm"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := ibm.NewIsVpc(ctx, "example", &ibm.IsVpcArgs{
Name: pulumi.String("example-vpc"),
})
if err != nil {
return err
}
exampleIsShare, err := ibm.NewIsShare(ctx, "example", &ibm.IsShareArgs{
Name: pulumi.String("example-share"),
Size: pulumi.Float64(200),
Profile: pulumi.String("dp2"),
Zone: pulumi.String("us-south-2"),
})
if err != nil {
return err
}
_ = ibm.LookupIsShareOutput(ctx, ibm.GetIsShareOutputArgs{
Share: exampleIsShare.IsShareId,
}, nil)
_ = ibm.LookupIsShareOutput(ctx, ibm.GetIsShareOutputArgs{
Name: exampleIsShare.Name,
}, nil)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Ibm = Pulumi.Ibm;
return await Deployment.RunAsync(() =>
{
var exampleIsVpc = new Ibm.IsVpc("example", new()
{
Name = "example-vpc",
});
var exampleIsShare = new Ibm.IsShare("example", new()
{
Name = "example-share",
Size = 200,
Profile = "dp2",
Zone = "us-south-2",
});
var example = Ibm.GetIsShare.Invoke(new()
{
Share = exampleIsShare.IsShareId,
});
var example1 = Ibm.GetIsShare.Invoke(new()
{
Name = exampleIsShare.Name,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ibm.IsVpc;
import com.pulumi.ibm.IsVpcArgs;
import com.pulumi.ibm.IsShare;
import com.pulumi.ibm.IsShareArgs;
import com.pulumi.ibm.IbmFunctions;
import com.pulumi.ibm.inputs.GetIsShareArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var exampleIsVpc = new IsVpc("exampleIsVpc", IsVpcArgs.builder()
.name("example-vpc")
.build());
var exampleIsShare = new IsShare("exampleIsShare", IsShareArgs.builder()
.name("example-share")
.size(200.0)
.profile("dp2")
.zone("us-south-2")
.build());
final var example = IbmFunctions.getIsShare(GetIsShareArgs.builder()
.share(exampleIsShare.isShareId())
.build());
final var example1 = IbmFunctions.getIsShare(GetIsShareArgs.builder()
.name(exampleIsShare.name())
.build());
}
}
resources:
exampleIsVpc:
type: ibm:IsVpc
name: example
properties:
name: example-vpc
exampleIsShare:
type: ibm:IsShare
name: example
properties:
name: example-share
size: 200
profile: dp2
zone: us-south-2
variables:
example:
fn::invoke:
function: ibm:getIsShare
arguments:
share: ${exampleIsShare.isShareId}
example1:
fn::invoke:
function: ibm:getIsShare
arguments:
name: ${exampleIsShare.name}
Using getIsShare
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getIsShare(args: GetIsShareArgs, opts?: InvokeOptions): Promise<GetIsShareResult>
function getIsShareOutput(args: GetIsShareOutputArgs, opts?: InvokeOptions): Output<GetIsShareResult>def get_is_share(id: Optional[str] = None,
name: Optional[str] = None,
share: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetIsShareResult
def get_is_share_output(id: Optional[pulumi.Input[str]] = None,
name: Optional[pulumi.Input[str]] = None,
share: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetIsShareResult]func LookupIsShare(ctx *Context, args *LookupIsShareArgs, opts ...InvokeOption) (*LookupIsShareResult, error)
func LookupIsShareOutput(ctx *Context, args *LookupIsShareOutputArgs, opts ...InvokeOption) LookupIsShareResultOutput> Note: This function is named LookupIsShare in the Go SDK.
public static class GetIsShare
{
public static Task<GetIsShareResult> InvokeAsync(GetIsShareArgs args, InvokeOptions? opts = null)
public static Output<GetIsShareResult> Invoke(GetIsShareInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetIsShareResult> getIsShare(GetIsShareArgs args, InvokeOptions options)
public static Output<GetIsShareResult> getIsShare(GetIsShareArgs args, InvokeOptions options)
fn::invoke:
function: ibm:index/getIsShare:getIsShare
arguments:
# arguments dictionaryThe following arguments are supported:
getIsShare Result
The following output properties are available:
- Access
Control stringMode - (Boolean) The access control mode for the share.
- List<string>
- (String) Access management tags associated to the share.
- Accessor
Binding stringRole - (String) The accessor binding role of this file share:-
none: This file share is not participating in access with another file share-origin: This file share is the origin for one or more file shares (which may be in other accounts)-accessor: This file share is providing access to another file share (which may be in another account). - Accessor
Bindings List<GetIs Share Accessor Binding> - (List) The accessor bindings for this file share. Each accessor binding identifies a resource (possibly in another account) with access to this file share's data. Nested schema for accessor_bindings:
- Allowed
Access List<string>Protocols - (String) The access protocols to allow for this share
- Allowed
Transit List<string>Encryption Modes - (List of string) The transit encryption modes to allow for this share.
- Availability
Mode string - (String) The data availability mode of the share
- Bandwidth double
- (Integer) The maximum bandwidth (in megabits per second) for the share.
- Created
At string - The date and time that the file share is created.
- Crn string
- (String) The CRN for this share snapshot.
- Encryption string
- The type of encryption used for this file share.
- Encryption
Key string - The CRN of the key used to encrypt this file share.
- Href string
- (String) The URL for this share snapshot.
- Id string
- (String) The unique identifier for this share snapshot.
- Iops double
- The maximum input/output operation performance bandwidth per second for the file share.
- Latest
Jobs List<GetIs Share Latest Job> - The latest job associated with this file share.This property will be absent if no jobs have been created for this file share. Nested
latest_jobblocks have the following structure: - Latest
Syncs List<GetIs Share Latest Sync> - (List) Information about the latest synchronization for this file share.
Nested
latest_syncblocks have the following structure: - Lifecycle
State string - The lifecycle state of the file share.
- Mount
Targets List<GetIs Share Mount Target> - Name string
- (String) The name for this share snapshot. The name is unique across all snapshots for the file share.
-
List<Get
Is Share Origin Share> - (Optional, List) The origin share this accessor share is referring to.This property will be present when the
accessor_binding_roleisaccessor. Nested schema for origin_share: - Profile string
- The name of the profile this file share uses.
-
List<Get
Is Share Replica Share> - The replica file share for this source file share.This property will be present when the
replication_roleissource. Nestedreplica_shareblocks have the following structure: - Replication
Cron stringSpec - Replication
Role string - The replication role of the file share.*
none: This share is not participating in replication.*replica: This share is a replication target.*source: This share is a replication source. - Replication
Status string - "The replication status of the file share.*
initializing: This share is initializing replication.*active: This share is actively participating in replication.*failover_pending: This share is performing a replication failover.*split_pending: This share is performing a replication split.*none: This share is not participating in replication.*degraded: This share's replication sync is degraded.*sync_pending: This share is performing a replication sync. - Replication
Status List<GetReasons Is Share Replication Status Reason> - The reasons for the current replication status (if any). Nested
replication_status_reasonsblocks have the following structure: - Resource
Group string - The ID of the resource group for this file share.
- Resource
Type string - (String) The resource type.
-
List<Get
Is Share Share Target> - Mount targets for the file share. Nested
targetsblocks have the following structure: - Size double
- The size of the file share rounded up to the next gigabyte.
- Snapshot
Count double - (Integer) The total number of snapshots for this share.
- Snapshot
Size double - (Integer) The total size (in gigabytes) of snapshots used for this file share.
-
List<Get
Is Share Source Share> - The source file share for this replica file share. This property will be present when the
replication_roleisreplica. Nestedsource_shareblocks have the following structure: - Source
Snapshots List<GetIs Share Source Snapshot> - (List) The snapshot from which this share was cloned.This property will be present when the share was created from a snapshot.The resources supported by this property mayexpand in thefuture. Nested schema for source_snapshot:
- Storage
Generation double - List<string>
- (String) User tags associated for to the share.
- Zone string
- The name of the zone this file share will reside in.
- string
- Access
Control stringMode - (Boolean) The access control mode for the share.
- []string
- (String) Access management tags associated to the share.
- Accessor
Binding stringRole - (String) The accessor binding role of this file share:-
none: This file share is not participating in access with another file share-origin: This file share is the origin for one or more file shares (which may be in other accounts)-accessor: This file share is providing access to another file share (which may be in another account). - Accessor
Bindings []GetIs Share Accessor Binding - (List) The accessor bindings for this file share. Each accessor binding identifies a resource (possibly in another account) with access to this file share's data. Nested schema for accessor_bindings:
- Allowed
Access []stringProtocols - (String) The access protocols to allow for this share
- Allowed
Transit []stringEncryption Modes - (List of string) The transit encryption modes to allow for this share.
- Availability
Mode string - (String) The data availability mode of the share
- Bandwidth float64
- (Integer) The maximum bandwidth (in megabits per second) for the share.
- Created
At string - The date and time that the file share is created.
- Crn string
- (String) The CRN for this share snapshot.
- Encryption string
- The type of encryption used for this file share.
- Encryption
Key string - The CRN of the key used to encrypt this file share.
- Href string
- (String) The URL for this share snapshot.
- Id string
- (String) The unique identifier for this share snapshot.
- Iops float64
- The maximum input/output operation performance bandwidth per second for the file share.
- Latest
Jobs []GetIs Share Latest Job - The latest job associated with this file share.This property will be absent if no jobs have been created for this file share. Nested
latest_jobblocks have the following structure: - Latest
Syncs []GetIs Share Latest Sync - (List) Information about the latest synchronization for this file share.
Nested
latest_syncblocks have the following structure: - Lifecycle
State string - The lifecycle state of the file share.
- Mount
Targets []GetIs Share Mount Target Type - Name string
- (String) The name for this share snapshot. The name is unique across all snapshots for the file share.
-
[]Get
Is Share Origin Share - (Optional, List) The origin share this accessor share is referring to.This property will be present when the
accessor_binding_roleisaccessor. Nested schema for origin_share: - Profile string
- The name of the profile this file share uses.
-
[]Get
Is Share Replica Share - The replica file share for this source file share.This property will be present when the
replication_roleissource. Nestedreplica_shareblocks have the following structure: - Replication
Cron stringSpec - Replication
Role string - The replication role of the file share.*
none: This share is not participating in replication.*replica: This share is a replication target.*source: This share is a replication source. - Replication
Status string - "The replication status of the file share.*
initializing: This share is initializing replication.*active: This share is actively participating in replication.*failover_pending: This share is performing a replication failover.*split_pending: This share is performing a replication split.*none: This share is not participating in replication.*degraded: This share's replication sync is degraded.*sync_pending: This share is performing a replication sync. - Replication
Status []GetReasons Is Share Replication Status Reason - The reasons for the current replication status (if any). Nested
replication_status_reasonsblocks have the following structure: - Resource
Group string - The ID of the resource group for this file share.
- Resource
Type string - (String) The resource type.
-
[]Get
Is Share Share Target - Mount targets for the file share. Nested
targetsblocks have the following structure: - Size float64
- The size of the file share rounded up to the next gigabyte.
- Snapshot
Count float64 - (Integer) The total number of snapshots for this share.
- Snapshot
Size float64 - (Integer) The total size (in gigabytes) of snapshots used for this file share.
-
[]Get
Is Share Source Share - The source file share for this replica file share. This property will be present when the
replication_roleisreplica. Nestedsource_shareblocks have the following structure: - Source
Snapshots []GetIs Share Source Snapshot - (List) The snapshot from which this share was cloned.This property will be present when the share was created from a snapshot.The resources supported by this property mayexpand in thefuture. Nested schema for source_snapshot:
- Storage
Generation float64 - []string
- (String) User tags associated for to the share.
- Zone string
- The name of the zone this file share will reside in.
- string
- access
Control StringMode - (Boolean) The access control mode for the share.
- List<String>
- (String) Access management tags associated to the share.
- accessor
Binding StringRole - (String) The accessor binding role of this file share:-
none: This file share is not participating in access with another file share-origin: This file share is the origin for one or more file shares (which may be in other accounts)-accessor: This file share is providing access to another file share (which may be in another account). - accessor
Bindings List<GetIs Share Accessor Binding> - (List) The accessor bindings for this file share. Each accessor binding identifies a resource (possibly in another account) with access to this file share's data. Nested schema for accessor_bindings:
- allowed
Access List<String>Protocols - (String) The access protocols to allow for this share
- allowed
Transit List<String>Encryption Modes - (List of string) The transit encryption modes to allow for this share.
- availability
Mode String - (String) The data availability mode of the share
- bandwidth Double
- (Integer) The maximum bandwidth (in megabits per second) for the share.
- created
At String - The date and time that the file share is created.
- crn String
- (String) The CRN for this share snapshot.
- encryption String
- The type of encryption used for this file share.
- encryption
Key String - The CRN of the key used to encrypt this file share.
- href String
- (String) The URL for this share snapshot.
- id String
- (String) The unique identifier for this share snapshot.
- iops Double
- The maximum input/output operation performance bandwidth per second for the file share.
- latest
Jobs List<GetIs Share Latest Job> - The latest job associated with this file share.This property will be absent if no jobs have been created for this file share. Nested
latest_jobblocks have the following structure: - latest
Syncs List<GetIs Share Latest Sync> - (List) Information about the latest synchronization for this file share.
Nested
latest_syncblocks have the following structure: - lifecycle
State String - The lifecycle state of the file share.
- mount
Targets List<GetIs Share Mount Target> - name String
- (String) The name for this share snapshot. The name is unique across all snapshots for the file share.
-
List<Get
Is Share Origin Share> - (Optional, List) The origin share this accessor share is referring to.This property will be present when the
accessor_binding_roleisaccessor. Nested schema for origin_share: - profile String
- The name of the profile this file share uses.
-
List<Get
Is Share Replica Share> - The replica file share for this source file share.This property will be present when the
replication_roleissource. Nestedreplica_shareblocks have the following structure: - replication
Cron StringSpec - replication
Role String - The replication role of the file share.*
none: This share is not participating in replication.*replica: This share is a replication target.*source: This share is a replication source. - replication
Status String - "The replication status of the file share.*
initializing: This share is initializing replication.*active: This share is actively participating in replication.*failover_pending: This share is performing a replication failover.*split_pending: This share is performing a replication split.*none: This share is not participating in replication.*degraded: This share's replication sync is degraded.*sync_pending: This share is performing a replication sync. - replication
Status List<GetReasons Is Share Replication Status Reason> - The reasons for the current replication status (if any). Nested
replication_status_reasonsblocks have the following structure: - resource
Group String - The ID of the resource group for this file share.
- resource
Type String - (String) The resource type.
-
List<Get
Is Share Share Target> - Mount targets for the file share. Nested
targetsblocks have the following structure: - size Double
- The size of the file share rounded up to the next gigabyte.
- snapshot
Count Double - (Integer) The total number of snapshots for this share.
- snapshot
Size Double - (Integer) The total size (in gigabytes) of snapshots used for this file share.
-
List<Get
Is Share Source Share> - The source file share for this replica file share. This property will be present when the
replication_roleisreplica. Nestedsource_shareblocks have the following structure: - source
Snapshots List<GetIs Share Source Snapshot> - (List) The snapshot from which this share was cloned.This property will be present when the share was created from a snapshot.The resources supported by this property mayexpand in thefuture. Nested schema for source_snapshot:
- storage
Generation Double - List<String>
- (String) User tags associated for to the share.
- zone String
- The name of the zone this file share will reside in.
- String
- access
Control stringMode - (Boolean) The access control mode for the share.
- string[]
- (String) Access management tags associated to the share.
- accessor
Binding stringRole - (String) The accessor binding role of this file share:-
none: This file share is not participating in access with another file share-origin: This file share is the origin for one or more file shares (which may be in other accounts)-accessor: This file share is providing access to another file share (which may be in another account). - accessor
Bindings GetIs Share Accessor Binding[] - (List) The accessor bindings for this file share. Each accessor binding identifies a resource (possibly in another account) with access to this file share's data. Nested schema for accessor_bindings:
- allowed
Access string[]Protocols - (String) The access protocols to allow for this share
- allowed
Transit string[]Encryption Modes - (List of string) The transit encryption modes to allow for this share.
- availability
Mode string - (String) The data availability mode of the share
- bandwidth number
- (Integer) The maximum bandwidth (in megabits per second) for the share.
- created
At string - The date and time that the file share is created.
- crn string
- (String) The CRN for this share snapshot.
- encryption string
- The type of encryption used for this file share.
- encryption
Key string - The CRN of the key used to encrypt this file share.
- href string
- (String) The URL for this share snapshot.
- id string
- (String) The unique identifier for this share snapshot.
- iops number
- The maximum input/output operation performance bandwidth per second for the file share.
- latest
Jobs GetIs Share Latest Job[] - The latest job associated with this file share.This property will be absent if no jobs have been created for this file share. Nested
latest_jobblocks have the following structure: - latest
Syncs GetIs Share Latest Sync[] - (List) Information about the latest synchronization for this file share.
Nested
latest_syncblocks have the following structure: - lifecycle
State string - The lifecycle state of the file share.
- mount
Targets GetIs Share Mount Target[] - name string
- (String) The name for this share snapshot. The name is unique across all snapshots for the file share.
-
Get
Is Share Origin Share[] - (Optional, List) The origin share this accessor share is referring to.This property will be present when the
accessor_binding_roleisaccessor. Nested schema for origin_share: - profile string
- The name of the profile this file share uses.
-
Get
Is Share Replica Share[] - The replica file share for this source file share.This property will be present when the
replication_roleissource. Nestedreplica_shareblocks have the following structure: - replication
Cron stringSpec - replication
Role string - The replication role of the file share.*
none: This share is not participating in replication.*replica: This share is a replication target.*source: This share is a replication source. - replication
Status string - "The replication status of the file share.*
initializing: This share is initializing replication.*active: This share is actively participating in replication.*failover_pending: This share is performing a replication failover.*split_pending: This share is performing a replication split.*none: This share is not participating in replication.*degraded: This share's replication sync is degraded.*sync_pending: This share is performing a replication sync. - replication
Status GetReasons Is Share Replication Status Reason[] - The reasons for the current replication status (if any). Nested
replication_status_reasonsblocks have the following structure: - resource
Group string - The ID of the resource group for this file share.
- resource
Type string - (String) The resource type.
-
Get
Is Share Share Target[] - Mount targets for the file share. Nested
targetsblocks have the following structure: - size number
- The size of the file share rounded up to the next gigabyte.
- snapshot
Count number - (Integer) The total number of snapshots for this share.
- snapshot
Size number - (Integer) The total size (in gigabytes) of snapshots used for this file share.
-
Get
Is Share Source Share[] - The source file share for this replica file share. This property will be present when the
replication_roleisreplica. Nestedsource_shareblocks have the following structure: - source
Snapshots GetIs Share Source Snapshot[] - (List) The snapshot from which this share was cloned.This property will be present when the share was created from a snapshot.The resources supported by this property mayexpand in thefuture. Nested schema for source_snapshot:
- storage
Generation number - string[]
- (String) User tags associated for to the share.
- zone string
- The name of the zone this file share will reside in.
- string
- access_
control_ strmode - (Boolean) The access control mode for the share.
- Sequence[str]
- (String) Access management tags associated to the share.
- accessor_
binding_ strrole - (String) The accessor binding role of this file share:-
none: This file share is not participating in access with another file share-origin: This file share is the origin for one or more file shares (which may be in other accounts)-accessor: This file share is providing access to another file share (which may be in another account). - accessor_
bindings Sequence[GetIs Share Accessor Binding] - (List) The accessor bindings for this file share. Each accessor binding identifies a resource (possibly in another account) with access to this file share's data. Nested schema for accessor_bindings:
- allowed_
access_ Sequence[str]protocols - (String) The access protocols to allow for this share
- allowed_
transit_ Sequence[str]encryption_ modes - (List of string) The transit encryption modes to allow for this share.
- availability_
mode str - (String) The data availability mode of the share
- bandwidth float
- (Integer) The maximum bandwidth (in megabits per second) for the share.
- created_
at str - The date and time that the file share is created.
- crn str
- (String) The CRN for this share snapshot.
- encryption str
- The type of encryption used for this file share.
- encryption_
key str - The CRN of the key used to encrypt this file share.
- href str
- (String) The URL for this share snapshot.
- id str
- (String) The unique identifier for this share snapshot.
- iops float
- The maximum input/output operation performance bandwidth per second for the file share.
- latest_
jobs Sequence[GetIs Share Latest Job] - The latest job associated with this file share.This property will be absent if no jobs have been created for this file share. Nested
latest_jobblocks have the following structure: - latest_
syncs Sequence[GetIs Share Latest Sync] - (List) Information about the latest synchronization for this file share.
Nested
latest_syncblocks have the following structure: - lifecycle_
state str - The lifecycle state of the file share.
- mount_
targets Sequence[GetIs Share Mount Target] - name str
- (String) The name for this share snapshot. The name is unique across all snapshots for the file share.
-
Sequence[Get
Is Share Origin Share] - (Optional, List) The origin share this accessor share is referring to.This property will be present when the
accessor_binding_roleisaccessor. Nested schema for origin_share: - profile str
- The name of the profile this file share uses.
-
Sequence[Get
Is Share Replica Share] - The replica file share for this source file share.This property will be present when the
replication_roleissource. Nestedreplica_shareblocks have the following structure: - replication_
cron_ strspec - replication_
role str - The replication role of the file share.*
none: This share is not participating in replication.*replica: This share is a replication target.*source: This share is a replication source. - replication_
status str - "The replication status of the file share.*
initializing: This share is initializing replication.*active: This share is actively participating in replication.*failover_pending: This share is performing a replication failover.*split_pending: This share is performing a replication split.*none: This share is not participating in replication.*degraded: This share's replication sync is degraded.*sync_pending: This share is performing a replication sync. - replication_
status_ Sequence[Getreasons Is Share Replication Status Reason] - The reasons for the current replication status (if any). Nested
replication_status_reasonsblocks have the following structure: - resource_
group str - The ID of the resource group for this file share.
- resource_
type str - (String) The resource type.
-
Sequence[Get
Is Share Share Target] - Mount targets for the file share. Nested
targetsblocks have the following structure: - size float
- The size of the file share rounded up to the next gigabyte.
- snapshot_
count float - (Integer) The total number of snapshots for this share.
- snapshot_
size float - (Integer) The total size (in gigabytes) of snapshots used for this file share.
-
Sequence[Get
Is Share Source Share] - The source file share for this replica file share. This property will be present when the
replication_roleisreplica. Nestedsource_shareblocks have the following structure: - source_
snapshots Sequence[GetIs Share Source Snapshot] - (List) The snapshot from which this share was cloned.This property will be present when the share was created from a snapshot.The resources supported by this property mayexpand in thefuture. Nested schema for source_snapshot:
- storage_
generation float - Sequence[str]
- (String) User tags associated for to the share.
- zone str
- The name of the zone this file share will reside in.
- str
- access
Control StringMode - (Boolean) The access control mode for the share.
- List<String>
- (String) Access management tags associated to the share.
- accessor
Binding StringRole - (String) The accessor binding role of this file share:-
none: This file share is not participating in access with another file share-origin: This file share is the origin for one or more file shares (which may be in other accounts)-accessor: This file share is providing access to another file share (which may be in another account). - accessor
Bindings List<Property Map> - (List) The accessor bindings for this file share. Each accessor binding identifies a resource (possibly in another account) with access to this file share's data. Nested schema for accessor_bindings:
- allowed
Access List<String>Protocols - (String) The access protocols to allow for this share
- allowed
Transit List<String>Encryption Modes - (List of string) The transit encryption modes to allow for this share.
- availability
Mode String - (String) The data availability mode of the share
- bandwidth Number
- (Integer) The maximum bandwidth (in megabits per second) for the share.
- created
At String - The date and time that the file share is created.
- crn String
- (String) The CRN for this share snapshot.
- encryption String
- The type of encryption used for this file share.
- encryption
Key String - The CRN of the key used to encrypt this file share.
- href String
- (String) The URL for this share snapshot.
- id String
- (String) The unique identifier for this share snapshot.
- iops Number
- The maximum input/output operation performance bandwidth per second for the file share.
- latest
Jobs List<Property Map> - The latest job associated with this file share.This property will be absent if no jobs have been created for this file share. Nested
latest_jobblocks have the following structure: - latest
Syncs List<Property Map> - (List) Information about the latest synchronization for this file share.
Nested
latest_syncblocks have the following structure: - lifecycle
State String - The lifecycle state of the file share.
- mount
Targets List<Property Map> - name String
- (String) The name for this share snapshot. The name is unique across all snapshots for the file share.
- List<Property Map>
- (Optional, List) The origin share this accessor share is referring to.This property will be present when the
accessor_binding_roleisaccessor. Nested schema for origin_share: - profile String
- The name of the profile this file share uses.
- List<Property Map>
- The replica file share for this source file share.This property will be present when the
replication_roleissource. Nestedreplica_shareblocks have the following structure: - replication
Cron StringSpec - replication
Role String - The replication role of the file share.*
none: This share is not participating in replication.*replica: This share is a replication target.*source: This share is a replication source. - replication
Status String - "The replication status of the file share.*
initializing: This share is initializing replication.*active: This share is actively participating in replication.*failover_pending: This share is performing a replication failover.*split_pending: This share is performing a replication split.*none: This share is not participating in replication.*degraded: This share's replication sync is degraded.*sync_pending: This share is performing a replication sync. - replication
Status List<Property Map>Reasons - The reasons for the current replication status (if any). Nested
replication_status_reasonsblocks have the following structure: - resource
Group String - The ID of the resource group for this file share.
- resource
Type String - (String) The resource type.
- List<Property Map>
- Mount targets for the file share. Nested
targetsblocks have the following structure: - size Number
- The size of the file share rounded up to the next gigabyte.
- snapshot
Count Number - (Integer) The total number of snapshots for this share.
- snapshot
Size Number - (Integer) The total size (in gigabytes) of snapshots used for this file share.
- List<Property Map>
- The source file share for this replica file share. This property will be present when the
replication_roleisreplica. Nestedsource_shareblocks have the following structure: - source
Snapshots List<Property Map> - (List) The snapshot from which this share was cloned.This property will be present when the share was created from a snapshot.The resources supported by this property mayexpand in thefuture. Nested schema for source_snapshot:
- storage
Generation Number - List<String>
- (String) User tags associated for to the share.
- zone String
- The name of the zone this file share will reside in.
- String
Supporting Types
GetIsShareAccessorBinding
- Href string
- (String) The URL for this share snapshot.
- Id string
- (String) The unique identifier for this share snapshot.
- Resource
Type string - (String) The resource type.
- Href string
- (String) The URL for this share snapshot.
- Id string
- (String) The unique identifier for this share snapshot.
- Resource
Type string - (String) The resource type.
- href String
- (String) The URL for this share snapshot.
- id String
- (String) The unique identifier for this share snapshot.
- resource
Type String - (String) The resource type.
- href string
- (String) The URL for this share snapshot.
- id string
- (String) The unique identifier for this share snapshot.
- resource
Type string - (String) The resource type.
- href str
- (String) The URL for this share snapshot.
- id str
- (String) The unique identifier for this share snapshot.
- resource_
type str - (String) The resource type.
- href String
- (String) The URL for this share snapshot.
- id String
- (String) The unique identifier for this share snapshot.
- resource
Type String - (String) The resource type.
GetIsShareLatestJob
- Status string
- The status of the file share job
- Status
Reasons List<GetIs Share Latest Job Status Reason> - The reasons for the file share job status (if any). Nested
status_reasonsblocks have the following structure: - Type string
- The type of the file share job
- Status string
- The status of the file share job
- Status
Reasons []GetIs Share Latest Job Status Reason - The reasons for the file share job status (if any). Nested
status_reasonsblocks have the following structure: - Type string
- The type of the file share job
- status String
- The status of the file share job
- status
Reasons List<GetIs Share Latest Job Status Reason> - The reasons for the file share job status (if any). Nested
status_reasonsblocks have the following structure: - type String
- The type of the file share job
- status string
- The status of the file share job
- status
Reasons GetIs Share Latest Job Status Reason[] - The reasons for the file share job status (if any). Nested
status_reasonsblocks have the following structure: - type string
- The type of the file share job
- status str
- The status of the file share job
- status_
reasons Sequence[GetIs Share Latest Job Status Reason] - The reasons for the file share job status (if any). Nested
status_reasonsblocks have the following structure: - type str
- The type of the file share job
- status String
- The status of the file share job
- status
Reasons List<Property Map> - The reasons for the file share job status (if any). Nested
status_reasonsblocks have the following structure: - type String
- The type of the file share job
GetIsShareLatestJobStatusReason
GetIsShareLatestSync
- Completed
At string - (String) The completed date and time of last synchronization between the replica share and its source.
- Data
Transferred double - (Integer) The data transferred (in bytes) in the last synchronization between the replica and its source.
- Started
At string - (String) The start date and time of last synchronization between the replica share and its source.
- Completed
At string - (String) The completed date and time of last synchronization between the replica share and its source.
- Data
Transferred float64 - (Integer) The data transferred (in bytes) in the last synchronization between the replica and its source.
- Started
At string - (String) The start date and time of last synchronization between the replica share and its source.
- completed
At String - (String) The completed date and time of last synchronization between the replica share and its source.
- data
Transferred Double - (Integer) The data transferred (in bytes) in the last synchronization between the replica and its source.
- started
At String - (String) The start date and time of last synchronization between the replica share and its source.
- completed
At string - (String) The completed date and time of last synchronization between the replica share and its source.
- data
Transferred number - (Integer) The data transferred (in bytes) in the last synchronization between the replica and its source.
- started
At string - (String) The start date and time of last synchronization between the replica share and its source.
- completed_
at str - (String) The completed date and time of last synchronization between the replica share and its source.
- data_
transferred float - (Integer) The data transferred (in bytes) in the last synchronization between the replica and its source.
- started_
at str - (String) The start date and time of last synchronization between the replica share and its source.
- completed
At String - (String) The completed date and time of last synchronization between the replica share and its source.
- data
Transferred Number - (Integer) The data transferred (in bytes) in the last synchronization between the replica and its source.
- started
At String - (String) The start date and time of last synchronization between the replica share and its source.
GetIsShareMountTarget
- Deleteds
List<Get
Is Share Mount Target Deleted> - (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
- Href string
- (String) The URL for this share snapshot.
- Id string
- (String) The unique identifier for this share snapshot.
- Name string
- The file share name Note One of the aurgument is mandatory
- Resource
Type string - (String) The resource type.
- Deleteds
[]Get
Is Share Mount Target Deleted - (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
- Href string
- (String) The URL for this share snapshot.
- Id string
- (String) The unique identifier for this share snapshot.
- Name string
- The file share name Note One of the aurgument is mandatory
- Resource
Type string - (String) The resource type.
- deleteds
List<Get
Is Share Mount Target Deleted> - (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
- href String
- (String) The URL for this share snapshot.
- id String
- (String) The unique identifier for this share snapshot.
- name String
- The file share name Note One of the aurgument is mandatory
- resource
Type String - (String) The resource type.
- deleteds
Get
Is Share Mount Target Deleted[] - (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
- href string
- (String) The URL for this share snapshot.
- id string
- (String) The unique identifier for this share snapshot.
- name string
- The file share name Note One of the aurgument is mandatory
- resource
Type string - (String) The resource type.
- deleteds
Sequence[Get
Is Share Mount Target Deleted] - (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
- href str
- (String) The URL for this share snapshot.
- id str
- (String) The unique identifier for this share snapshot.
- name str
- The file share name Note One of the aurgument is mandatory
- resource_
type str - (String) The resource type.
- deleteds List<Property Map>
- (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
- href String
- (String) The URL for this share snapshot.
- id String
- (String) The unique identifier for this share snapshot.
- name String
- The file share name Note One of the aurgument is mandatory
- resource
Type String - (String) The resource type.
GetIsShareMountTargetDeleted
- More
Info string - (String) Link to documentation about deleted resources.
- More
Info string - (String) Link to documentation about deleted resources.
- more
Info String - (String) Link to documentation about deleted resources.
- more
Info string - (String) Link to documentation about deleted resources.
- more_
info str - (String) Link to documentation about deleted resources.
- more
Info String - (String) Link to documentation about deleted resources.
GetIsShareOriginShare
- Crn string
- (String) The CRN for this share snapshot.
- Deleteds
List<Get
Is Share Origin Share Deleted> - (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
- Href string
- (String) The URL for this share snapshot.
- Id string
- (String) The unique identifier for this share snapshot.
- Name string
- The file share name Note One of the aurgument is mandatory
- Remotes
List<Get
Is Share Origin Share Remote> - (Optional, List) If present, this property indicates that the resource associated with this referenceis remote and therefore may not be directly retrievable. Nested schema for remote:
- Resource
Type string - (String) The resource type.
- Crn string
- (String) The CRN for this share snapshot.
- Deleteds
[]Get
Is Share Origin Share Deleted - (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
- Href string
- (String) The URL for this share snapshot.
- Id string
- (String) The unique identifier for this share snapshot.
- Name string
- The file share name Note One of the aurgument is mandatory
- Remotes
[]Get
Is Share Origin Share Remote - (Optional, List) If present, this property indicates that the resource associated with this referenceis remote and therefore may not be directly retrievable. Nested schema for remote:
- Resource
Type string - (String) The resource type.
- crn String
- (String) The CRN for this share snapshot.
- deleteds
List<Get
Is Share Origin Share Deleted> - (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
- href String
- (String) The URL for this share snapshot.
- id String
- (String) The unique identifier for this share snapshot.
- name String
- The file share name Note One of the aurgument is mandatory
- remotes
List<Get
Is Share Origin Share Remote> - (Optional, List) If present, this property indicates that the resource associated with this referenceis remote and therefore may not be directly retrievable. Nested schema for remote:
- resource
Type String - (String) The resource type.
- crn string
- (String) The CRN for this share snapshot.
- deleteds
Get
Is Share Origin Share Deleted[] - (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
- href string
- (String) The URL for this share snapshot.
- id string
- (String) The unique identifier for this share snapshot.
- name string
- The file share name Note One of the aurgument is mandatory
- remotes
Get
Is Share Origin Share Remote[] - (Optional, List) If present, this property indicates that the resource associated with this referenceis remote and therefore may not be directly retrievable. Nested schema for remote:
- resource
Type string - (String) The resource type.
- crn str
- (String) The CRN for this share snapshot.
- deleteds
Sequence[Get
Is Share Origin Share Deleted] - (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
- href str
- (String) The URL for this share snapshot.
- id str
- (String) The unique identifier for this share snapshot.
- name str
- The file share name Note One of the aurgument is mandatory
- remotes
Sequence[Get
Is Share Origin Share Remote] - (Optional, List) If present, this property indicates that the resource associated with this referenceis remote and therefore may not be directly retrievable. Nested schema for remote:
- resource_
type str - (String) The resource type.
- crn String
- (String) The CRN for this share snapshot.
- deleteds List<Property Map>
- (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
- href String
- (String) The URL for this share snapshot.
- id String
- (String) The unique identifier for this share snapshot.
- name String
- The file share name Note One of the aurgument is mandatory
- remotes List<Property Map>
- (Optional, List) If present, this property indicates that the resource associated with this referenceis remote and therefore may not be directly retrievable. Nested schema for remote:
- resource
Type String - (String) The resource type.
GetIsShareOriginShareDeleted
- More
Info string - (String) Link to documentation about deleted resources.
- More
Info string - (String) Link to documentation about deleted resources.
- more
Info String - (String) Link to documentation about deleted resources.
- more
Info string - (String) Link to documentation about deleted resources.
- more_
info str - (String) Link to documentation about deleted resources.
- more
Info String - (String) Link to documentation about deleted resources.
GetIsShareOriginShareRemote
- Accounts
List<Get
Is Share Origin Share Remote Account> - (Optional, List) If present, this property indicates that the referenced resource is remote to thisaccount, and identifies the owning account. Nested schema for account:
- Regions
List<Get
Is Share Origin Share Remote Region> - (Optional, List) If present, this property indicates that the referenced resource is remote to thisregion, and identifies the native region. Nested schema for region:
- Accounts
[]Get
Is Share Origin Share Remote Account - (Optional, List) If present, this property indicates that the referenced resource is remote to thisaccount, and identifies the owning account. Nested schema for account:
- Regions
[]Get
Is Share Origin Share Remote Region - (Optional, List) If present, this property indicates that the referenced resource is remote to thisregion, and identifies the native region. Nested schema for region:
- accounts
List<Get
Is Share Origin Share Remote Account> - (Optional, List) If present, this property indicates that the referenced resource is remote to thisaccount, and identifies the owning account. Nested schema for account:
- regions
List<Get
Is Share Origin Share Remote Region> - (Optional, List) If present, this property indicates that the referenced resource is remote to thisregion, and identifies the native region. Nested schema for region:
- accounts
Get
Is Share Origin Share Remote Account[] - (Optional, List) If present, this property indicates that the referenced resource is remote to thisaccount, and identifies the owning account. Nested schema for account:
- regions
Get
Is Share Origin Share Remote Region[] - (Optional, List) If present, this property indicates that the referenced resource is remote to thisregion, and identifies the native region. Nested schema for region:
- accounts
Sequence[Get
Is Share Origin Share Remote Account] - (Optional, List) If present, this property indicates that the referenced resource is remote to thisaccount, and identifies the owning account. Nested schema for account:
- regions
Sequence[Get
Is Share Origin Share Remote Region] - (Optional, List) If present, this property indicates that the referenced resource is remote to thisregion, and identifies the native region. Nested schema for region:
- accounts List<Property Map>
- (Optional, List) If present, this property indicates that the referenced resource is remote to thisaccount, and identifies the owning account. Nested schema for account:
- regions List<Property Map>
- (Optional, List) If present, this property indicates that the referenced resource is remote to thisregion, and identifies the native region. Nested schema for region:
GetIsShareOriginShareRemoteAccount
- Id string
- (String) The unique identifier for this share snapshot.
- Resource
Type string - (String) The resource type.
- Id string
- (String) The unique identifier for this share snapshot.
- Resource
Type string - (String) The resource type.
- id String
- (String) The unique identifier for this share snapshot.
- resource
Type String - (String) The resource type.
- id string
- (String) The unique identifier for this share snapshot.
- resource
Type string - (String) The resource type.
- id str
- (String) The unique identifier for this share snapshot.
- resource_
type str - (String) The resource type.
- id String
- (String) The unique identifier for this share snapshot.
- resource
Type String - (String) The resource type.
GetIsShareOriginShareRemoteRegion
GetIsShareReplicaShare
- Crn string
- (String) The CRN for this share snapshot.
- Deleteds
List<Get
Is Share Replica Share Deleted> - (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
- Href string
- (String) The URL for this share snapshot.
- Id string
- (String) The unique identifier for this share snapshot.
- Name string
- The file share name Note One of the aurgument is mandatory
- Resource
Type string - (String) The resource type.
- Crn string
- (String) The CRN for this share snapshot.
- Deleteds
[]Get
Is Share Replica Share Deleted - (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
- Href string
- (String) The URL for this share snapshot.
- Id string
- (String) The unique identifier for this share snapshot.
- Name string
- The file share name Note One of the aurgument is mandatory
- Resource
Type string - (String) The resource type.
- crn String
- (String) The CRN for this share snapshot.
- deleteds
List<Get
Is Share Replica Share Deleted> - (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
- href String
- (String) The URL for this share snapshot.
- id String
- (String) The unique identifier for this share snapshot.
- name String
- The file share name Note One of the aurgument is mandatory
- resource
Type String - (String) The resource type.
- crn string
- (String) The CRN for this share snapshot.
- deleteds
Get
Is Share Replica Share Deleted[] - (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
- href string
- (String) The URL for this share snapshot.
- id string
- (String) The unique identifier for this share snapshot.
- name string
- The file share name Note One of the aurgument is mandatory
- resource
Type string - (String) The resource type.
- crn str
- (String) The CRN for this share snapshot.
- deleteds
Sequence[Get
Is Share Replica Share Deleted] - (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
- href str
- (String) The URL for this share snapshot.
- id str
- (String) The unique identifier for this share snapshot.
- name str
- The file share name Note One of the aurgument is mandatory
- resource_
type str - (String) The resource type.
- crn String
- (String) The CRN for this share snapshot.
- deleteds List<Property Map>
- (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
- href String
- (String) The URL for this share snapshot.
- id String
- (String) The unique identifier for this share snapshot.
- name String
- The file share name Note One of the aurgument is mandatory
- resource
Type String - (String) The resource type.
GetIsShareReplicaShareDeleted
- More
Info string - (String) Link to documentation about deleted resources.
- More
Info string - (String) Link to documentation about deleted resources.
- more
Info String - (String) Link to documentation about deleted resources.
- more
Info string - (String) Link to documentation about deleted resources.
- more_
info str - (String) Link to documentation about deleted resources.
- more
Info String - (String) Link to documentation about deleted resources.
GetIsShareReplicationStatusReason
GetIsShareShareTarget
- Deleteds
List<Get
Is Share Share Target Deleted> - (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
- Href string
- (String) The URL for this share snapshot.
- Id string
- (String) The unique identifier for this share snapshot.
- Name string
- The file share name Note One of the aurgument is mandatory
- Resource
Type string - (String) The resource type.
- Deleteds
[]Get
Is Share Share Target Deleted - (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
- Href string
- (String) The URL for this share snapshot.
- Id string
- (String) The unique identifier for this share snapshot.
- Name string
- The file share name Note One of the aurgument is mandatory
- Resource
Type string - (String) The resource type.
- deleteds
List<Get
Is Share Share Target Deleted> - (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
- href String
- (String) The URL for this share snapshot.
- id String
- (String) The unique identifier for this share snapshot.
- name String
- The file share name Note One of the aurgument is mandatory
- resource
Type String - (String) The resource type.
- deleteds
Get
Is Share Share Target Deleted[] - (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
- href string
- (String) The URL for this share snapshot.
- id string
- (String) The unique identifier for this share snapshot.
- name string
- The file share name Note One of the aurgument is mandatory
- resource
Type string - (String) The resource type.
- deleteds
Sequence[Get
Is Share Share Target Deleted] - (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
- href str
- (String) The URL for this share snapshot.
- id str
- (String) The unique identifier for this share snapshot.
- name str
- The file share name Note One of the aurgument is mandatory
- resource_
type str - (String) The resource type.
- deleteds List<Property Map>
- (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
- href String
- (String) The URL for this share snapshot.
- id String
- (String) The unique identifier for this share snapshot.
- name String
- The file share name Note One of the aurgument is mandatory
- resource
Type String - (String) The resource type.
GetIsShareShareTargetDeleted
- More
Info string - (String) Link to documentation about deleted resources.
- More
Info string - (String) Link to documentation about deleted resources.
- more
Info String - (String) Link to documentation about deleted resources.
- more
Info string - (String) Link to documentation about deleted resources.
- more_
info str - (String) Link to documentation about deleted resources.
- more
Info String - (String) Link to documentation about deleted resources.
GetIsShareSourceShare
- Crn string
- (String) The CRN for this share snapshot.
- Deleteds
List<Get
Is Share Source Share Deleted> - (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
- Href string
- (String) The URL for this share snapshot.
- Id string
- (String) The unique identifier for this share snapshot.
- Name string
- The file share name Note One of the aurgument is mandatory
- Resource
Type string - (String) The resource type.
- Crn string
- (String) The CRN for this share snapshot.
- Deleteds
[]Get
Is Share Source Share Deleted - (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
- Href string
- (String) The URL for this share snapshot.
- Id string
- (String) The unique identifier for this share snapshot.
- Name string
- The file share name Note One of the aurgument is mandatory
- Resource
Type string - (String) The resource type.
- crn String
- (String) The CRN for this share snapshot.
- deleteds
List<Get
Is Share Source Share Deleted> - (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
- href String
- (String) The URL for this share snapshot.
- id String
- (String) The unique identifier for this share snapshot.
- name String
- The file share name Note One of the aurgument is mandatory
- resource
Type String - (String) The resource type.
- crn string
- (String) The CRN for this share snapshot.
- deleteds
Get
Is Share Source Share Deleted[] - (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
- href string
- (String) The URL for this share snapshot.
- id string
- (String) The unique identifier for this share snapshot.
- name string
- The file share name Note One of the aurgument is mandatory
- resource
Type string - (String) The resource type.
- crn str
- (String) The CRN for this share snapshot.
- deleteds
Sequence[Get
Is Share Source Share Deleted] - (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
- href str
- (String) The URL for this share snapshot.
- id str
- (String) The unique identifier for this share snapshot.
- name str
- The file share name Note One of the aurgument is mandatory
- resource_
type str - (String) The resource type.
- crn String
- (String) The CRN for this share snapshot.
- deleteds List<Property Map>
- (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
- href String
- (String) The URL for this share snapshot.
- id String
- (String) The unique identifier for this share snapshot.
- name String
- The file share name Note One of the aurgument is mandatory
- resource
Type String - (String) The resource type.
GetIsShareSourceShareDeleted
- More
Info string - (String) Link to documentation about deleted resources.
- More
Info string - (String) Link to documentation about deleted resources.
- more
Info String - (String) Link to documentation about deleted resources.
- more
Info string - (String) Link to documentation about deleted resources.
- more_
info str - (String) Link to documentation about deleted resources.
- more
Info String - (String) Link to documentation about deleted resources.
GetIsShareSourceSnapshot
- Crn string
- (String) The CRN for this share snapshot.
- Deleteds
List<Get
Is Share Source Snapshot Deleted> - (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
- Href string
- (String) The URL for this share snapshot.
- Id string
- (String) The unique identifier for this share snapshot.
- Name string
- The file share name Note One of the aurgument is mandatory
- Resource
Type string - (String) The resource type.
- Crn string
- (String) The CRN for this share snapshot.
- Deleteds
[]Get
Is Share Source Snapshot Deleted - (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
- Href string
- (String) The URL for this share snapshot.
- Id string
- (String) The unique identifier for this share snapshot.
- Name string
- The file share name Note One of the aurgument is mandatory
- Resource
Type string - (String) The resource type.
- crn String
- (String) The CRN for this share snapshot.
- deleteds
List<Get
Is Share Source Snapshot Deleted> - (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
- href String
- (String) The URL for this share snapshot.
- id String
- (String) The unique identifier for this share snapshot.
- name String
- The file share name Note One of the aurgument is mandatory
- resource
Type String - (String) The resource type.
- crn string
- (String) The CRN for this share snapshot.
- deleteds
Get
Is Share Source Snapshot Deleted[] - (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
- href string
- (String) The URL for this share snapshot.
- id string
- (String) The unique identifier for this share snapshot.
- name string
- The file share name Note One of the aurgument is mandatory
- resource
Type string - (String) The resource type.
- crn str
- (String) The CRN for this share snapshot.
- deleteds
Sequence[Get
Is Share Source Snapshot Deleted] - (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
- href str
- (String) The URL for this share snapshot.
- id str
- (String) The unique identifier for this share snapshot.
- name str
- The file share name Note One of the aurgument is mandatory
- resource_
type str - (String) The resource type.
- crn String
- (String) The CRN for this share snapshot.
- deleteds List<Property Map>
- (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
- href String
- (String) The URL for this share snapshot.
- id String
- (String) The unique identifier for this share snapshot.
- name String
- The file share name Note One of the aurgument is mandatory
- resource
Type String - (String) The resource type.
GetIsShareSourceSnapshotDeleted
- More
Info string - (String) Link to documentation about deleted resources.
- More
Info string - (String) Link to documentation about deleted resources.
- more
Info String - (String) Link to documentation about deleted resources.
- more
Info string - (String) Link to documentation about deleted resources.
- more_
info str - (String) Link to documentation about deleted resources.
- more
Info String - (String) Link to documentation about deleted resources.
Package Details
- Repository
- ibm ibm-cloud/terraform-provider-ibm
- License
- Notes
- This Pulumi package is based on the
ibmTerraform Provider.
ibm 1.85.0 published on Sunday, Nov 9, 2025 by ibm-cloud
