You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.1 KiB
39 lines
1.1 KiB
![]()
2 years ago
|
//
|
||
|
// 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 *appmonitorRsaSecret;
|
||
|
@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 */
|