requestModel property
Specifies the API request model used to call the storage service.
When not specified, the default value of RequestModel REQUEST_MODEL_VIRTUAL_HOSTED_STYLE is used. Possible string values are:
- "REQUEST_MODEL_UNSPECIFIED" : RequestModel is not specified.
- "REQUEST_MODEL_VIRTUAL_HOSTED_STYLE" : Perform requests using Virtual Hosted Style. Example: https://bucket-name.s3.region.amazonaws.com/key-name
- "REQUEST_MODEL_PATH_STYLE" : Perform requests using Path Style. Example: https://s3.region.amazonaws.com/bucket-name/key-name
Implementation
core.String? requestModel;