CloudFilesProviderPurgeObjectFromCDN Method |
Purges an object from the CDN, sending an email notification to the specified addresses when the object has been purged.
Namespace: net.openstack.Providers.RackspaceAssembly: openstacknet (in openstacknet.dll) Version: 1.7.7+Branch.master.Sha.25d803f397c8693c2c13777ef6675f796f520f2c
Syntax public void PurgeObjectFromCDN(
string container,
string objectName,
IEnumerable<string> emails = null,
string region = null,
CloudIdentity identity = null
)
Public Sub PurgeObjectFromCDN (
container As String,
objectName As String,
Optional emails As IEnumerable(Of String) = Nothing,
Optional region As String = Nothing,
Optional identity As CloudIdentity = Nothing
)
public:
virtual void PurgeObjectFromCDN(
String^ container,
String^ objectName,
IEnumerable<String^>^ emails = nullptr,
String^ region = nullptr,
CloudIdentity^ identity = nullptr
) sealed
abstract PurgeObjectFromCDN :
container : string *
objectName : string *
?emails : IEnumerable<string> *
?region : string *
?identity : CloudIdentity
(* Defaults:
let _emails = defaultArg emails null
let _region = defaultArg region null
let _identity = defaultArg identity null
*)
-> unit
override PurgeObjectFromCDN :
container : string *
objectName : string *
?emails : IEnumerable<string> *
?region : string *
?identity : CloudIdentity
(* Defaults:
let _emails = defaultArg emails null
let _region = defaultArg region null
let _identity = defaultArg identity null
*)
-> unit
Parameters
- container
- Type: SystemString
The container name. - objectName
- Type: SystemString
The object name. Example image_name.jpeg - emails (Optional)
- Type: System.Collections.GenericIEnumerableString
The email addresses to notify once the object has been purged. If this value is , no email notifications are sent. - region (Optional)
- Type: SystemString
The region in which to execute this action. If not specified, the user's default region will be used. - identity (Optional)
- Type: net.openstack.Core.DomainCloudIdentity
The cloud identity to use for this request. If not specified, the default identity for the current provider instance will be used.
Implements
IObjectStorageProviderPurgeObjectFromCDN(String, String, IEnumerableString, String, CloudIdentity)Exceptions Version Information .NET Framework
Supported in: 4.5
openstack.net
Supported in: 1.6, 1.5, 1.4, 1.3.6
See Also