File tree Expand file tree Collapse file tree 5 files changed +28
-22
lines changed
QCloudCOSXML/Classes/auto-generation Expand file tree Collapse file tree 5 files changed +28
-22
lines changed Original file line number Diff line number Diff line change 1+ # 5.1.2
2+ - 修复C++混编情况下的问题
3+
14# 5.1.1
25- 修复了一些问题
36
Original file line number Diff line number Diff line change 11Pod ::Spec . new do |s |
22 s . name = "QCloudCOSXML"
3- s . version = "5.1.1 "
3+ s . version = "5.1.2 "
44 s . summary = "QCloudCOSXML 腾讯云iOS-SDK组件"
55
66 s . homepage = "https://cloud.tencent.com/"
@@ -9,5 +9,5 @@ Pod::Spec.new do |s|
99 s . source = { :git => "https://github.com/tencentyun/qcloud-sdk-ios.git" , :tag => s . version . to_s }
1010 s . ios . deployment_target = '8.0'
1111 s . source_files = 'QCloudCOSXML/Classes/**/*'
12- s . dependency 'QCloudCore' , '5.1.1 '
12+ s . dependency 'QCloudCore' , '5.1.2 '
1313end
Original file line number Diff line number Diff line change 3232NS_ASSUME_NONNULL_BEGIN
3333@interface QCloudLifecycleRuleFilter : NSObject
3434/* *
35- 指定规则所适用的前缀。匹配前缀的对象受该规则影响。
36- */
35+ 指定规则所适用的前缀。匹配前缀的对象受该规则影响。
36+ */
3737@property (strong , nonatomic ) NSString *prefix;
3838/* *
39- 标签,Tag 可以有零个或者多个
40- */
39+ 标签,Tag 可以有零个或者多个
40+ */
4141@property (strong , nonatomic ) NSString *tag;
4242/* *
43- 用于组合 Prefix 与 Tag
44- */
45- @property (strong , nonatomic ) QCloudLifecycleRuleFilterAnd *and ;
43+ 用于组合 Prefix 与 Tag
44+ */
45+ @property (strong , nonatomic ) QCloudLifecycleRuleFilterAnd *ruleFilterAnd ;
4646@end
4747NS_ASSUME_NONNULL_END
48+
Original file line number Diff line number Diff line change 11//
2- // QCloudLifecycleRuleFilterAnd .m
3- // QCloudLifecycleRuleFilterAnd
2+ // QCloudLifecycleRuleFilter .m
3+ // QCloudLifecycleRuleFilter
44//
55// Created by tencent
66// Copyright (c) 2015年 tencent. All rights reserved.
2424//
2525
2626
27- #import " QCloudLifecycleRuleFilterAnd .h"
27+ #import " QCloudLifecycleRuleFilter .h"
2828
29- #import " QCloudLifecycleTag .h"
29+ #import " QCloudLifecycleRuleFilterAnd .h"
3030
3131
3232NS_ASSUME_NONNULL_BEGIN
33- @implementation QCloudLifecycleRuleFilterAnd
33+ @implementation QCloudLifecycleRuleFilter
3434
3535
3636
3737+ (NSDictionary *)modelCustomPropertyMapper
3838{
39- return @{
40- @" prefix" :@" Prefix" ,
41- @" tag" :@" Tag" ,
42- };
39+ return @{
40+ @" prefix" :@" Prefix" ,
41+ @" tag" :@" Tag" ,
42+ @" ruleFilterAnd" :@" And" ,
43+ };
4344}
4445
4546
4647- (BOOL )modelCustomTransformToDictionary : (NSMutableDictionary *)dic
4748{
48-
49-
49+
50+
5051 return YES ;
5152}
5253
@@ -56,11 +57,12 @@ - (NSDictionary *)modelCustomWillTransformFromDictionary:(NSDictionary *)dic
5657 return dic;
5758 }
5859 NSMutableDictionary * transfromDic = [NSMutableDictionary dictionaryWithDictionary: dic];
59-
60+
6061 return transfromDic;
6162}
6263
6364@end
6465
6566
6667NS_ASSUME_NONNULL_END
68+
Original file line number Diff line number Diff line change 88
99Pod ::Spec . new do |s |
1010 s . name = "QCloudCore"
11- s . version = "5.1.1 "
11+ s . version = "5.1.2 "
1212 s . summary = "QCloudCore--腾讯云iOS-SDK Foundation"
1313
1414# This description is used to generate tags and improve search results.
You can’t perform that action at this time.
0 commit comments