src/Transform/AccessPoint.php [97:112]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public static function fromGetAccessPointPolicy(Models\GetAccessPointPolicyRequest $request): OperationInput
    {
        $input = new OperationInput(
            'GetAccessPointPolicy',
            'GET',
        );
        $input->setParameter('accessPointPolicy', '');
        $input->setBucket($request->bucket ?? '');
        $input->setOpMetadata('sub-resource', ['accessPointPolicy',]);

        $customSerializer = [
            [Functions::class, 'addContentMd5']
        ];
        Serializer::serializeInput($request, $input, $customSerializer);
        return $input;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/Transform/BucketPolicy.php [24:39]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public static function fromPutBucketPolicy(Models\PutBucketPolicyRequest $request): OperationInput
    {
        $input = new OperationInput(
            'PutBucketPolicy',
            'PUT',
        );
        $input->setParameter('policy', '');
        $input->setBucket($request->bucket ?? '');
        $input->setOpMetadata('sub-resource', ['policy',]);

        $customSerializer = [
            [Functions::class, 'addContentMd5']
        ];
        Serializer::serializeInput($request, $input, $customSerializer);
        return $input;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



