当前位置: 首页>>代码示例>>Python>>正文


Python utils.is_json_value_header方法代码示例

本文整理汇总了Python中botocore.utils.is_json_value_header方法的典型用法代码示例。如果您正苦于以下问题:Python utils.is_json_value_header方法的具体用法?Python utils.is_json_value_header怎么用?Python utils.is_json_value_header使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在botocore.utils的用法示例。


在下文中一共展示了utils.is_json_value_header方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: _get_value_for_special_type

# 需要导入模块: from botocore import utils [as 别名]
# 或者: from botocore.utils import is_json_value_header [as 别名]
def _get_value_for_special_type(self, shape, special_type_map):
        if is_json_value_header(shape):
            return special_type_map['jsonvalue_header']
        for special_type, marked_shape in self._context[
                'special_shape_types'].items():
            if special_type in special_type_map:
                if shape == marked_shape:
                    return special_type_map[special_type]
        return None 
开发者ID:QData,项目名称:deepWordBug,代码行数:11,代码来源:shape.py

示例2: _convert_header_value

# 需要导入模块: from botocore import utils [as 别名]
# 或者: from botocore.utils import is_json_value_header [as 别名]
def _convert_header_value(self, shape, value):
        if shape.type_name == 'timestamp':
            datetime_obj = parse_to_aware_datetime(value)
            timestamp = calendar.timegm(datetime_obj.utctimetuple())
            timestamp_format = shape.serialization.get(
                'timestampFormat', self.HEADER_TIMESTAMP_FORMAT)
            return self._convert_timestamp_to_str(timestamp, timestamp_format)
        elif is_json_value_header(shape):
            # Serialize with no spaces after separators to save space in
            # the header.
            return self._get_base64(json.dumps(value, separators=(',', ':')))
        else:
            return value 
开发者ID:QData,项目名称:deepWordBug,代码行数:15,代码来源:serialize.py

示例3: _check_special_validation_cases

# 需要导入模块: from botocore import utils [as 别名]
# 或者: from botocore.utils import is_json_value_header [as 别名]
def _check_special_validation_cases(self, shape):
        if is_json_value_header(shape):
            return self._validate_jsonvalue_string 
开发者ID:QData,项目名称:deepWordBug,代码行数:5,代码来源:validate.py

示例4: _unpack_cli_arg

# 需要导入模块: from botocore import utils [as 别名]
# 或者: from botocore.utils import is_json_value_header [as 别名]
def _unpack_cli_arg(argument_model, value, cli_name):
    if is_json_value_header(argument_model):
        return _unpack_json_cli_arg(argument_model, value, cli_name)
    elif argument_model.type_name in SCALAR_TYPES:
        return unpack_scalar_cli_arg(
            argument_model, value, cli_name)
    elif argument_model.type_name in COMPLEX_TYPES:
        return _unpack_complex_cli_arg(
            argument_model, value, cli_name)
    else:
        return six.text_type(value) 
开发者ID:gkrizek,项目名称:bash-lambda-layer,代码行数:13,代码来源:argprocess.py

示例5: _get_argument_type_name

# 需要导入模块: from botocore import utils [as 别名]
# 或者: from botocore.utils import is_json_value_header [as 别名]
def _get_argument_type_name(self, shape, default):
        if is_json_value_header(shape):
            return 'JSON'
        return default 
开发者ID:gkrizek,项目名称:bash-lambda-layer,代码行数:6,代码来源:clidocs.py

示例6: _convert_header_value

# 需要导入模块: from botocore import utils [as 别名]
# 或者: from botocore.utils import is_json_value_header [as 别名]
def _convert_header_value(self, shape, value):
        if shape.type_name == 'timestamp':
            datetime_obj = parse_to_aware_datetime(value)
            timestamp = calendar.timegm(datetime_obj.utctimetuple())
            return self._timestamp_rfc822(timestamp)
        elif is_json_value_header(shape):
            # Serialize with no spaces after separators to save space in
            # the header.
            return self._get_base64(json.dumps(value, separators=(',', ':')))
        else:
            return value 
开发者ID:VirtueSecurity,项目名称:aws-extender,代码行数:13,代码来源:serialize.py


注:本文中的botocore.utils.is_json_value_header方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。