Gcp Cloud Storage (Google)
Description
Important concepts
Configuration in DI
public static class OtherApplicationServicesConfig
{
public static IServiceCollection AddOtherApplicationServices(
this IServiceCollection services,
IConfiguration configuration)
{
// Registers GCP Cloud Storage as the IFlexFileStore bridge.
services.AddFlexGcpCloudStorageFileStore(configuration);
return services;
}
}appsettings.json
Examples (template-based)
Upload file (PostBusHandler)
Download file (Query)
Library-specific considerations
Last updated