38 lines
1.1 KiB
Objective-C
38 lines
1.1 KiB
Objective-C
//
|
|
// EMASOptions.h
|
|
// AlicloudUtils
|
|
//
|
|
// Created by junmo on 2018/3/16.
|
|
// Copyright © 2018年 Ali. All rights reserved.
|
|
//
|
|
|
|
#ifndef EMASOptions_h
|
|
#define EMASOptions_h
|
|
|
|
@interface EMASOptionSDKServiceItem : NSObject
|
|
|
|
@property (nonatomic, copy) NSString *sdkId;
|
|
@property (nonatomic, copy) NSString *version;
|
|
@property (nonatomic, assign) NSNumber *status;
|
|
|
|
@end
|
|
|
|
@interface EMASOptions : NSObject
|
|
|
|
@property (nonatomic, copy, readonly) NSString *emasAppKey;
|
|
@property (nonatomic, copy, readonly) NSString *emasAppSecret;
|
|
@property (nonatomic, copy, readonly) NSString *emasBundleId;
|
|
@property (nonatomic, copy, readonly) NSString *hotfixIdSecret;
|
|
@property (nonatomic, copy, readonly) NSString *hotfixRsaSecret;
|
|
@property (nonatomic, copy, readonly) NSString *tlogRsaSecret;
|
|
@property (nonatomic, copy, readonly) NSString *httpdnsAccountId;
|
|
@property (nonatomic, copy, readonly) NSString *httpdnsSecretKey;
|
|
|
|
+ (EMASOptions *)defaultOptions;
|
|
- (NSString *)optionByConfigKey:(NSString *)key;
|
|
- (EMASOptionSDKServiceItem *)sdkServiceItemForSdkId:(NSString *)sdkId;
|
|
|
|
@end
|
|
|
|
#endif /* EMASOptions_h */
|