[Java][resttemplate] Add test for bearer auth (#17081)

* add bearer auth API to echo-api

* run generate-samples.sh

* add resttemplate echo-api sample

* add bearer auth test

* remove @Ignore
This commit is contained in:
Tomohiko Ozawa
2023-11-16 01:38:49 +09:00
committed by GitHub
parent e47e7041f7
commit 37451fa569
133 changed files with 12443 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
# DefaultValue
to test the default value of properties
## Properties
| Name | Type | Description | Notes |
|------------ | ------------- | ------------- | -------------|
|**arrayStringEnumRefDefault** | **List<StringEnumRef>** | | [optional] |
|**arrayStringEnumDefault** | [**List<ArrayStringEnumDefaultEnum>**](#List<ArrayStringEnumDefaultEnum>) | | [optional] |
|**arrayStringDefault** | **List<String>** | | [optional] |
|**arrayIntegerDefault** | **List<Integer>** | | [optional] |
|**arrayString** | **List<String>** | | [optional] |
|**arrayStringNullable** | **List<String>** | | [optional] |
|**arrayStringExtensionNullable** | **List<String>** | | [optional] |
|**stringNullable** | **String** | | [optional] |
## Enum: List<ArrayStringEnumDefaultEnum>
| Name | Value |
|---- | -----|
| SUCCESS | "success" |
| FAILURE | "failure" |
| UNCLASSIFIED | "unclassified" |