40
40
from ._models import ( # pylint: disable=unused-import
41
41
ContainerProperties ,
42
42
BlobProperties ,
43
- BlobPropertiesPaged ,
44
- BlobType ,
45
- BlobPrefix )
43
+ BlobType )
44
+ from ._list_blobs_helper import BlobPrefix , BlobPropertiesPaged
46
45
from ._lease import BlobLeaseClient , get_access_conditions
47
46
from ._blob_client import BlobClient
48
47
@@ -783,6 +782,12 @@ def upload_blob(
783
782
and act according to the condition specified by the `match_condition` parameter.
784
783
:keyword ~azure.core.MatchConditions match_condition:
785
784
The match condition to use upon the etag.
785
+ :keyword str if_tags_match_condition
786
+ Specify a SQL where clause on blob tags to operate only on blob with a matching value.
787
+ eg. "\" tagname\" ='my tag'"
788
+
789
+ .. versionadded:: 12.4.0
790
+
786
791
:keyword int timeout:
787
792
The timeout parameter is expressed in seconds. This method may make
788
793
multiple calls to the Azure service and the timeout will apply to
@@ -893,6 +898,12 @@ def delete_blob(
893
898
and act according to the condition specified by the `match_condition` parameter.
894
899
:keyword ~azure.core.MatchConditions match_condition:
895
900
The match condition to use upon the etag.
901
+ :keyword str if_tags_match_condition
902
+ Specify a SQL where clause on blob tags to operate only on blob with a matching value.
903
+ eg. "\" tagname\" ='my tag'"
904
+
905
+ .. versionadded:: 12.4.0
906
+
896
907
:keyword int timeout:
897
908
The timeout parameter is expressed in seconds.
898
909
:rtype: None
@@ -952,6 +963,12 @@ def download_blob(self, blob, offset=None, length=None, **kwargs):
952
963
and act according to the condition specified by the `match_condition` parameter.
953
964
:keyword ~azure.core.MatchConditions match_condition:
954
965
The match condition to use upon the etag.
966
+ :keyword str if_tags_match_condition
967
+ Specify a SQL where clause on blob tags to operate only on blob with a matching value.
968
+ eg. "\" tagname\" ='my tag'"
969
+
970
+ .. versionadded:: 12.4.0
971
+
955
972
:keyword ~azure.storage.blob.CustomerProvidedEncryptionKey cpk:
956
973
Encrypts the data on the service-side with the given key.
957
974
Use of customer-provided keys must be done over HTTPS.
@@ -998,6 +1015,9 @@ def _generate_delete_blobs_subrequest_options(
998
1015
if_none_match = None
999
1016
if modified_access_conditions is not None :
1000
1017
if_none_match = modified_access_conditions .if_none_match
1018
+ if_tags = None
1019
+ if modified_access_conditions is not None :
1020
+ if_tags = modified_access_conditions .if_tags
1001
1021
1002
1022
# Construct parameters
1003
1023
timeout = kwargs .pop ('timeout' , None )
@@ -1027,6 +1047,8 @@ def _generate_delete_blobs_subrequest_options(
1027
1047
if if_none_match is not None :
1028
1048
header_parameters ['If-None-Match' ] = self ._client ._serialize .header ( # pylint: disable=protected-access
1029
1049
"if_none_match" , if_none_match , 'str' )
1050
+ if if_tags is not None :
1051
+ header_parameters ['x-ms-if-tags' ] = self ._client ._serialize .header ("if_tags" , if_tags , 'str' ) # pylint: disable=protected-access
1030
1052
1031
1053
return query_parameters , header_parameters
1032
1054
@@ -1039,6 +1061,7 @@ def _generate_delete_blobs_options(self,
1039
1061
delete_snapshots = kwargs .pop ('delete_snapshots' , None )
1040
1062
if_modified_since = kwargs .pop ('if_modified_since' , None )
1041
1063
if_unmodified_since = kwargs .pop ('if_unmodified_since' , None )
1064
+ if_tags_match_condition = kwargs .pop ('if_tags_match_condition' , None )
1042
1065
kwargs .update ({'raise_on_any_failure' : raise_on_any_failure ,
1043
1066
'sas' : self ._query_str .replace ('?' , '&' ),
1044
1067
'timeout' : '&timeout=' + str (timeout ) if timeout else ""
@@ -1057,18 +1080,21 @@ def _generate_delete_blobs_options(self,
1057
1080
if_modified_since = if_modified_since or blob .get ('if_modified_since' ),
1058
1081
if_unmodified_since = if_unmodified_since or blob .get ('if_unmodified_since' ),
1059
1082
etag = blob .get ('etag' ),
1083
+ if_tags_match_condition = if_tags_match_condition or blob .get ('if_tags_match_condition' ),
1060
1084
match_condition = blob .get ('match_condition' ) or MatchConditions .IfNotModified if blob .get ('etag' )
1061
1085
else None ,
1062
1086
timeout = blob .get ('timeout' ),
1063
1087
)
1064
- query_parameters , header_parameters = self ._generate_delete_blobs_subrequest_options (** options )
1065
1088
except AttributeError :
1066
- query_parameters , header_parameters = self . _generate_delete_blobs_subrequest_options (
1089
+ options = BlobClient . _generic_delete_blob_options ( # pylint: disable=protected-access
1067
1090
delete_snapshots = delete_snapshots ,
1068
1091
if_modified_since = if_modified_since ,
1069
- if_unmodified_since = if_unmodified_since
1092
+ if_unmodified_since = if_unmodified_since ,
1093
+ if_tags_match_condition = if_tags_match_condition
1070
1094
)
1071
1095
1096
+ query_parameters , header_parameters = self ._generate_delete_blobs_subrequest_options (** options )
1097
+
1072
1098
req = HttpRequest (
1073
1099
"DELETE" ,
1074
1100
"/{}/{}{}" .format (quote (container_name ), quote (blob_name , safe = '/~' ), self ._query_str ),
@@ -1113,6 +1139,8 @@ def delete_blobs(self, *blobs, **kwargs):
1113
1139
key: 'etag', value type: str
1114
1140
match the etag or not:
1115
1141
key: 'match_condition', value type: MatchConditions
1142
+ tags match condition:
1143
+ key: 'if_tags_match_condition', value type: str
1116
1144
lease:
1117
1145
key: 'lease_id', value type: Union[str, LeaseClient]
1118
1146
timeout for subrequest:
@@ -1135,6 +1163,12 @@ def delete_blobs(self, *blobs, **kwargs):
1135
1163
If a date is passed in without timezone info, it is assumed to be UTC.
1136
1164
Specify this header to perform the operation only if
1137
1165
the resource has not been modified since the specified date/time.
1166
+ :keyword str if_tags_match_condition
1167
+ Specify a SQL where clause on blob tags to operate only on blob with a matching value.
1168
+ eg. "\" tagname\" ='my tag'"
1169
+
1170
+ .. versionadded:: 12.4.0
1171
+
1138
1172
:keyword bool raise_on_any_failure:
1139
1173
This is a boolean param which defaults to True. When this is set, an exception
1140
1174
is raised even if there is a single operation failure.
@@ -1152,19 +1186,25 @@ def delete_blobs(self, *blobs, **kwargs):
1152
1186
:dedent: 8
1153
1187
:caption: Deleting multiple blobs.
1154
1188
"""
1189
+ if len (blobs ) == 0 :
1190
+ return iter (list ())
1191
+
1155
1192
reqs , options = self ._generate_delete_blobs_options (* blobs , ** kwargs )
1156
1193
1157
1194
return self ._batch_send (* reqs , ** options )
1158
1195
1159
1196
def _generate_set_tiers_subrequest_options (
1160
- self , tier , rehydrate_priority = None , lease_access_conditions = None , ** kwargs
1197
+ self , tier , snapshot = None , version_id = None , rehydrate_priority = None , lease_access_conditions = None , ** kwargs
1161
1198
):
1162
1199
"""This code is a copy from _generated.
1163
1200
1164
1201
Once Autorest is able to provide request preparation this code should be removed.
1165
1202
"""
1166
1203
if not tier :
1167
1204
raise ValueError ("A blob tier must be specified" )
1205
+ if snapshot and version_id :
1206
+ raise ValueError ("Snapshot and version_id cannot be set at the same time" )
1207
+ if_tags = kwargs .pop ('if_tags' , None )
1168
1208
1169
1209
lease_id = None
1170
1210
if lease_access_conditions is not None :
@@ -1174,6 +1214,10 @@ def _generate_set_tiers_subrequest_options(
1174
1214
timeout = kwargs .pop ('timeout' , None )
1175
1215
# Construct parameters
1176
1216
query_parameters = {}
1217
+ if snapshot is not None :
1218
+ query_parameters ['snapshot' ] = self ._client ._serialize .query ("snapshot" , snapshot , 'str' ) # pylint: disable=protected-access
1219
+ if version_id is not None :
1220
+ query_parameters ['versionid' ] = self ._client ._serialize .query ("version_id" , version_id , 'str' ) # pylint: disable=protected-access
1177
1221
if timeout is not None :
1178
1222
query_parameters ['timeout' ] = self ._client ._serialize .query ("timeout" , timeout , 'int' , minimum = 0 ) # pylint: disable=protected-access
1179
1223
query_parameters ['comp' ] = self ._client ._serialize .query ("comp" , comp , 'str' ) # pylint: disable=protected-access, specify-parameter-names-in-call
@@ -1186,6 +1230,8 @@ def _generate_set_tiers_subrequest_options(
1186
1230
"rehydrate_priority" , rehydrate_priority , 'str' )
1187
1231
if lease_id is not None :
1188
1232
header_parameters ['x-ms-lease-id' ] = self ._client ._serialize .header ("lease_id" , lease_id , 'str' ) # pylint: disable=protected-access
1233
+ if if_tags is not None :
1234
+ header_parameters ['x-ms-if-tags' ] = self ._client ._serialize .header ("if_tags" , if_tags , 'str' ) # pylint: disable=protected-access
1189
1235
1190
1236
return query_parameters , header_parameters
1191
1237
@@ -1197,6 +1243,7 @@ def _generate_set_tiers_options(self,
1197
1243
timeout = kwargs .pop ('timeout' , None )
1198
1244
raise_on_any_failure = kwargs .pop ('raise_on_any_failure' , True )
1199
1245
rehydrate_priority = kwargs .pop ('rehydrate_priority' , None )
1246
+ if_tags = kwargs .pop ('if_tags_match_condition' , None )
1200
1247
kwargs .update ({'raise_on_any_failure' : raise_on_any_failure ,
1201
1248
'sas' : self ._query_str .replace ('?' , '&' ),
1202
1249
'timeout' : '&timeout=' + str (timeout ) if timeout else ""
@@ -1211,13 +1258,16 @@ def _generate_set_tiers_options(self,
1211
1258
tier = blob_tier or blob .get ('blob_tier' )
1212
1259
query_parameters , header_parameters = self ._generate_set_tiers_subrequest_options (
1213
1260
tier = tier ,
1261
+ snapshot = blob .get ('snapshot' ),
1262
+ version_id = blob .get ('version_id' ),
1214
1263
rehydrate_priority = rehydrate_priority or blob .get ('rehydrate_priority' ),
1215
1264
lease_access_conditions = blob .get ('lease_id' ),
1265
+ if_tags = if_tags or blob .get ('if_tags_match_condition' ),
1216
1266
timeout = timeout or blob .get ('timeout' )
1217
1267
)
1218
1268
except AttributeError :
1219
1269
query_parameters , header_parameters = self ._generate_set_tiers_subrequest_options (
1220
- blob_tier , rehydrate_priority = rehydrate_priority )
1270
+ blob_tier , rehydrate_priority = rehydrate_priority , if_tags = if_tags )
1221
1271
1222
1272
req = HttpRequest (
1223
1273
"PUT" ,
@@ -1270,12 +1320,24 @@ def set_standard_blob_tier_blobs(
1270
1320
key: 'rehydrate_priority', value type: RehydratePriority
1271
1321
lease:
1272
1322
key: 'lease_id', value type: Union[str, LeaseClient]
1323
+ snapshot:
1324
+ key: "snapshost", value type: str
1325
+ version id:
1326
+ key: "version_id", value type: str
1327
+ tags match condition:
1328
+ key: 'if_tags_match_condition', value type: str
1273
1329
timeout for subrequest:
1274
1330
key: 'timeout', value type: int
1275
1331
1276
1332
:type blobs: list[str], list[dict], or list[~azure.storage.blob.BlobProperties]
1277
1333
:keyword ~azure.storage.blob.RehydratePriority rehydrate_priority:
1278
1334
Indicates the priority with which to rehydrate an archived blob
1335
+ :keyword str if_tags_match_condition
1336
+ Specify a SQL where clause on blob tags to operate only on blob with a matching value.
1337
+ eg. "\" tagname\" ='my tag'"
1338
+
1339
+ .. versionadded:: 12.4.0
1340
+
1279
1341
:keyword int timeout:
1280
1342
The timeout parameter is expressed in seconds.
1281
1343
:keyword bool raise_on_any_failure:
0 commit comments