{
  "name": "synced-folder",
  "displayName": "Synced Folder",
  "version": "0.12.4",
  "description": "A Pulumi component that synchronizes a local folder to Amazon S3, Azure Blob Storage, or Google Cloud Storage.",
  "keywords": [
    "pulumi",
    "aws",
    "azure",
    "gcp",
    "category/cloud",
    "kind/component"
  ],
  "homepage": "https://pulumi.com",
  "repository": "https://github.com/pulumi/pulumi-synced-folder",
  "logoUrl": "https://raw.githubusercontent.com/pulumi/pulumi-synced-folder/main/assets/synced-folder.png",
  "publisher": "Pulumi",
  "meta": {
    "moduleFormat": "(.*)"
  },
  "language": {
    "csharp": {
      "packageReferences": {
        "Pulumi": "3.*"
      },
      "respectSchemaVersion": true
    },
    "go": {
      "generateResourceContainerTypes": true,
      "importBasePath": "github.com/pulumi/pulumi-synced-folder/sdk/go/synced-folder",
      "respectSchemaVersion": true
    },
    "nodejs": {
      "dependencies": {
        "@pulumi/pulumi": "^3.0.0"
      },
      "devDependencies": {
        "typescript": "^4.0.0"
      },
      "respectSchemaVersion": true
    },
    "python": {
      "requires": {
        "pulumi": ">=3.0.0,<4.0.0"
      },
      "pyproject": {
        "enabled": true
      },
      "respectSchemaVersion": true
    }
  },
  "config": {},
  "provider": {
    "type": "object"
  },
  "resources": {
    "synced-folder:index:AzureBlobFolder": {
      "type": "object",
      "inputProperties": {
        "containerName": {
          "type": "string",
          "description": "The name of the Azure storage container to sync to. Required."
        },
        "disableManagedObjectAliases": {
          "type": "boolean",
          "description": "Disables adding an [alias](https://www.pulumi.com/docs/intro/concepts/resources/options/aliases/) resource option to managed objects in the bucket."
        },
        "includeHiddenFiles": {
          "type": "boolean",
          "description": "Include hidden files (\"dotfiles\") when synchronizing folders. Defaults to `false`."
        },
        "managedObjects": {
          "type": "boolean",
          "description": "Whether to have Pulumi manage files as individual cloud resources. Defaults to `true`."
        },
        "path": {
          "type": "string",
          "description": "The path (relative or fully-qualified) to the folder containing the files to be synced. Required."
        },
        "resourceGroupName": {
          "type": "string",
          "description": "The name of the Azure resource group that the storage account belongs to. Required."
        },
        "storageAccountName": {
          "type": "string",
          "description": "The name of the Azure storage account that the container belongs to. Required."
        }
      },
      "requiredInputs": [
        "containerName",
        "path",
        "resourceGroupName",
        "storageAccountName"
      ],
      "isComponent": true
    },
    "synced-folder:index:GoogleCloudFolder": {
      "type": "object",
      "inputProperties": {
        "bucketName": {
          "type": "string",
          "description": "The name of the Google Cloud Storage bucket to sync to (e.g., `my-bucket` in `gs://my-bucket`). Required."
        },
        "disableManagedObjectAliases": {
          "type": "boolean",
          "description": "Disables adding an [alias](https://www.pulumi.com/docs/intro/concepts/resources/options/aliases/) resource option to managed objects in the bucket."
        },
        "includeHiddenFiles": {
          "type": "boolean",
          "description": "Include hidden files (\"dotfiles\") when synchronizing folders. Defaults to `false`."
        },
        "managedObjects": {
          "type": "boolean",
          "description": "Whether to have Pulumi manage files as individual cloud resources. Defaults to `true`."
        },
        "path": {
          "type": "string",
          "description": "The path (relative or fully-qualified) to the folder containing the files to be synced. Required."
        }
      },
      "requiredInputs": [
        "bucketName",
        "path"
      ],
      "isComponent": true
    },
    "synced-folder:index:S3BucketFolder": {
      "type": "object",
      "inputProperties": {
        "acl": {
          "type": "string",
          "description": "The AWS [Canned ACL](https://docs.aws.amazon.com/AmazonS3/latest/userguide/acl-overview.html#canned-acl) to apply to each file (e.g., `public-read`). Required."
        },
        "bucketName": {
          "type": "string",
          "description": "The name of the S3 bucket to sync to (e.g., `my-bucket` in `s3://my-bucket`). Required."
        },
        "disableManagedObjectAliases": {
          "type": "boolean",
          "description": "Disables adding an [alias](https://www.pulumi.com/docs/intro/concepts/resources/options/aliases/) resource option to managed objects in the bucket."
        },
        "includeHiddenFiles": {
          "type": "boolean",
          "description": "Include hidden files (\"dotfiles\") when synchronizing folders. Defaults to `false`."
        },
        "managedObjects": {
          "type": "boolean",
          "description": "Whether to have Pulumi manage files as individual cloud resources. Defaults to `true`."
        },
        "path": {
          "type": "string",
          "description": "The path (relative or fully-qualified) to the folder containing the files to be synced. Required."
        }
      },
      "requiredInputs": [
        "acl",
        "bucketName",
        "path"
      ],
      "isComponent": true
    }
  }
}
