diff --git a/README.md b/README.md index a14d395..5ff61c2 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ composer require saasus-platform/saasus-sdk-php SAASUS_SAAS_ID="(画面のSaaS ID)" SAASUS_API_KEY="(画面のAPI KEY)" SAASUS_SECRET_KEY="(画面のクライアントシークレット)" -SAASUS_LOGIN_URL="https://auth.sample.saasus.jp/ (ログイン画面のURL)" +SAASUS_LOGIN_URL="https://auth.sample.saasus.jp/(ログイン画面のURL)" ``` SAASUS_SAAS_ID, SAASUS_API_KEY, SAASUS_SECRET_KEY は SaaS 開発コンソール画面に表示されている SaaS ID、 API キー  と クライアントシークレットを、 @@ -60,6 +60,10 @@ Route::middleware(\AntiPatternInc\Saasus\Laravel\Middleware\Auth::class)->group( 請求業務で使う外部 SaaS との連携情報の参照・更新に利用します。 +- [Integration](./generated/Integration/README.md) + + EventBridge 連携設定の参照・更新に利用します。 + --- ## ユースケースサンプル diff --git a/generated/Auth/Client.php b/generated/Auth/Client.php index 8e57509..8464820 100644 --- a/generated/Auth/Client.php +++ b/generated/Auth/Client.php @@ -12,12 +12,12 @@ class Client extends \AntiPatternInc\Saasus\Sdk\Auth\Runtime\Client\Client User information is obtained based on the ID token of the SaaS user (registered user). The ID token is passed to the Callback URL during login from the SaaSus Platform generated login screen. - By getting the ID token from the URL on the server side and calling this API, you can get the information of the user. + User information can be obtained from calling this API with an ID token from the URL on the server side. Since the acquired tenant, role (role), price plan, etc. are included, it is possible to implement authorization based on it. * * @param array $queryParameters { - * @var string $token IDトークン(ID token) + * @var string $token IDトークン(ID Token) * } * @param string $fetch Fetch mode to use (can be OBJECT or RESPONSE) * @throws \AntiPatternInc\Saasus\Sdk\Auth\Exception\GetUserInfoUnauthorizedException @@ -44,9 +44,9 @@ public function getBasicInfo(string $fetch = self::FETCH_OBJECT) CNAME レコードが生成されますので、 DNS に設定して下さい。 既に稼働中の SaaS アプリケーションに設定している場合には、動作に影響があります。 - Update the domain name set as a parameter based on the SaaS ID. - A CNAME record will be generated, so set it in your DNS. - If you set it on a SaaS application that is already running, it will affect your behavior. + Update the domain name that was set as a parameter based on the SaaS ID. + After the CNAME record is generated, set it in your DNS. + If it is set on a SaaS application that is already running, it will affect the behavior. * * @param null|\AntiPatternInc\Saasus\Sdk\Auth\Model\UpdateBasicInfoParam $requestBody @@ -73,7 +73,7 @@ public function getAuthInfo(string $fetch = self::FETCH_OBJECT) * ログイン後に認証情報を渡す SaaS の URL を登録します。 ここで登録した URL に認証情報を渡し、SaaSus SDK を利用してこの Callback の実装をすることが可能となります。 - Register a SaaS URL to pass authentication after login. + Register post-login SaaS URL for authentication information. It is possible to pass authentication information to the URL registered here and implement this Callback using the SaaSus SDK. * @@ -100,7 +100,7 @@ public function getSaasUsers(string $fetch = self::FETCH_OBJECT) /** * SaaSにユーザーを作成します。 - Create a user to SaaS. + Create SaaS User. * * @param null|\AntiPatternInc\Saasus\Sdk\Auth\Model\CreateSaasUserParam $requestBody @@ -117,7 +117,7 @@ public function createSaasUser(?\AntiPatternInc\Saasus\Sdk\Auth\Model\CreateSaas /** * ユーザーIDを元に一致するユーザーをテナントからすべて削除し、SaaSからも削除します。 - Deletes all matching users based on the user ID from the tenant and also deletes them from SaaS. + Delete all users with matching user ID from the tenant and SaaS. * * @param string $userId ユーザーID(User ID) @@ -134,7 +134,7 @@ public function deleteSaasUser(string $userId, string $fetch = self::FETCH_OBJEC /** * ユーザーIDからユーザー情報を取得します。 - Get user information from user ID. + Get user information based on user ID. * * @param string $userId ユーザーID(User ID) @@ -151,7 +151,7 @@ public function getSaasUser(string $userId, string $fetch = self::FETCH_OBJECT) /** * ユーザーのログインパスワードを変更します。 - Change a user's login password. + Change user's login password. * * @param string $userId ユーザーID(User ID) @@ -168,7 +168,7 @@ public function updateSaasUserPassword(string $userId, ?\AntiPatternInc\Saasus\S /** * ユーザーのメールアドレスを変更します。 - Change a user's email. + Change user's email. * * @param string $userId ユーザーID(User ID) @@ -185,7 +185,7 @@ public function updateSaasUserEmail(string $userId, ?\AntiPatternInc\Saasus\Sdk\ /** * 認証アプリケーションを登録します。 - Register an authenticator application. + Register an authentication application. * * @param string $userId ユーザーID(User ID) @@ -202,7 +202,7 @@ public function updateSoftwareToken(string $userId, ?\AntiPatternInc\Saasus\Sdk\ /** * 認証アプリケーション登録用のシークレットコードを作成します。 - Create a secret code for authenticator application registration. + Create a secret code for authentication application registration. * * @param string $userId ユーザーID(User ID) @@ -235,7 +235,7 @@ public function getUserMfaPreference(string $userId, string $fetch = self::FETCH /** * ユーザーのMFA設定を更新します。 - Update the user's MFA settings. + Update user's MFA settings. * * @param string $userId ユーザーID(User ID) @@ -263,8 +263,8 @@ public function getAllTenantUsers(string $fetch = self::FETCH_OBJECT) * ユーザーIDからテナントに所属しているユーザー情報を取得します。 複数テナントに所属している場合は別のオブジェクトとして返却されます。 - Get the user information belonging to the tenant from the user ID. - If it belongs to multiple tenants, it will be returned as another object. + Get information on user belonging to the tenant from the user ID. + If the user belongs to multiple tenants, it will be returned as another object. * * @param string $userId ユーザーID(User ID) @@ -281,8 +281,8 @@ public function getAllTenantUser(string $userId, string $fetch = self::FETCH_OBJ /** * テナントに所属するユーザーを全件取得します。 idは一意です。 - Get all users belonging to the tenant. - id is unique. + Get all the users belonging to the tenant. + Id is unique. * * @param string $tenantId テナントID(Tenant ID) @@ -299,8 +299,8 @@ public function getTenantUsers(string $tenantId, string $fetch = self::FETCH_OBJ * テナントにユーザーを作成します。 attributesを空のオブジェクトにした場合、追加属性は空で作成されます。 - Create a user in your tenant. - If attributes is an empty object, the additional attributes will be created empty. + Create a tenant user. + If attributes is empty, the additional attributes will be created empty. * * @param string $tenantId テナントID(Tenant ID) @@ -335,7 +335,7 @@ public function deleteTenantUser(string $tenantId, string $userId, string $fetch /** * テナントのユーザーをIDから一件取得します。 - Acquires one tenant user by specifying the ID. + Get one tenant user by specific ID. * * @param string $tenantId テナントID(Tenant ID) @@ -353,7 +353,7 @@ public function getTenantUser(string $tenantId, string $userId, string $fetch = /** * テナントのユーザー属性情報を更新します。 - Update tenant user attribute information. + Update tenant user attributes. * * @param string $tenantId テナントID(Tenant ID) @@ -372,7 +372,7 @@ public function updateTenantUser(string $tenantId, string $userId, ?\AntiPattern /** * テナントのユーザーに役割(ロール)を作成します。 - Create roles for tenant users. + Create roles on tenant users. * * @param string $tenantId テナントID(Tenant ID) @@ -391,7 +391,7 @@ public function createTenantUserRoles(string $tenantId, string $userId, int $env /** * テナントのユーザーから役割(ロール)を削除します。 - Delete a role (role) from a tenant user. + Remove a role from a tenant user. * * @param string $tenantId テナントID(Tenant ID) @@ -441,7 +441,7 @@ public function createRole(?\stdClass $requestBody = null, string $fetch = self: /** * 役割(ロール)を削除します。 - Delete a role. + Delete role. * * @param string $roleName 役割(ロール)名(role name) @@ -470,9 +470,9 @@ public function getUserAttributes(string $fetch = self::FETCH_OBJECT) 例えば、ユーザー名を持たせる、誕生日を持たせるなど、ユーザーに紐付いた項目の定義を行うことができます。 一方で、個人情報を SaaSus Platform 側に持たせたくない場合は、このユーザー属性定義を行わずに SaaS 側で個人情報を持つことを検討してください。 - Register additional user attributes to be retained in the SaaSus Platform. - For example, you can define items associated with a user, such as having a user name, having a birthday, etc. - On the other hand, if you don't want to have personal information on the SaaS Platform side, consider having personal information on the SaaS side without this user attribute definition. + Create additional user attributes to be kept on the SaaSus Platform. + For example, you can define items associated with a user, such as user name, birthday, etc. + If you don't want personal information on the SaaS Platform side, personal information can be kept on the SaaS side without user attribute definition. * * @param null|\stdClass $requestBody @@ -488,10 +488,10 @@ public function createUserAttribute(?\stdClass $requestBody = null, string $fetc /** * SaaSus Platform にて保持するユーザーの追加属性を削除します。 - Delete the additional attributes of the user retained by the SaaSus Platform. + Delete user attributes kept on the SaaSus Platform. * - * @param string $attributeName 属性名(attribute name) + * @param string $attributeName 属性名(Attribute Name) * @param string $fetch Fetch mode to use (can be OBJECT or RESPONSE) * @throws \AntiPatternInc\Saasus\Sdk\Auth\Exception\DeleteUserAttributeNotFoundException * @throws \AntiPatternInc\Saasus\Sdk\Auth\Exception\DeleteUserAttributeInternalServerErrorException @@ -517,7 +517,7 @@ public function getTenantAttributes(string $fetch = self::FETCH_OBJECT) 例えばテナントの呼び名やメモなどをを持たせることができ、SaaSからSaaSus SDK/APIを利用して取得することができます。 Register additional tenant attributes to be managed by SaaSus Platform. - For example, you can have a tenant name, memo, etc., and you can get it from SaaS using the SaaSus SDK/API. + For example, tenant name, memo, etc., then get the attributes from SaaS using the SaaSus SDK/API. * * @param null|\stdClass $requestBody @@ -533,10 +533,10 @@ public function createTenantAttribute(?\stdClass $requestBody = null, string $fe /** * SaaSus Platform で管理する、テナントの追加属性の削除を行います。 - Deletes additional attributes of tenants managed by SaaSus Platform. + Deletes tenant attributes managed by SaaSus Platform. * - * @param string $attributeName 属性名(attribute name) + * @param string $attributeName 属性名(Attribute Name) * @param string $fetch Fetch mode to use (can be OBJECT or RESPONSE) * @throws \AntiPatternInc\Saasus\Sdk\Auth\Exception\DeleteTenantAttributeNotFoundException * @throws \AntiPatternInc\Saasus\Sdk\Auth\Exception\DeleteTenantAttributeInternalServerErrorException @@ -560,7 +560,7 @@ public function getTenants(string $fetch = self::FETCH_OBJECT) /** * SaaSus Platform で管理する、テナント情報を作成します。 - Create tenant information in the SaaSus Platform. + Create a tenant managed by the SaaSus Platform. * * @param null|\stdClass $requestBody @@ -576,7 +576,7 @@ public function createTenant(?\stdClass $requestBody = null, string $fetch = sel /** * SaaSus Platform で管理する、テナントの詳細情報を削除します。 - Delete tenant information managed by SaaSus Platform. + Delete SaaSus Platform tenant. * * @param string $tenantId テナントID(Tenant ID) @@ -592,7 +592,7 @@ public function deleteTenant(string $tenantId, string $fetch = self::FETCH_OBJEC /** * SaaSus Platform で管理する、テナントの詳細情報を取得します。 - Get detailed information about a tenant registered with the SaaSus Platform. + Get the details of tenant managed on the SaaSus Platform. * * @param string $tenantId テナントID(Tenant ID) @@ -609,7 +609,7 @@ public function getTenant(string $tenantId, string $fetch = self::FETCH_OBJECT) /** * SaaSus Platform で管理する、テナントの詳細情報を更新します。 - Update tenant details managed by the SaaSus Platform. + Update SaaSus Platform tenant details. * * @param string $tenantId テナントID(Tenant ID) @@ -647,7 +647,7 @@ public function createApiKey(string $fetch = self::FETCH_OBJECT) /** * サーバサイド用の API キーを削除します。 - Delete API Keys. + Delete API Key. * * @param string $apiKey APIキー(API key) @@ -693,7 +693,7 @@ public function findNotificationMessages(string $fetch = self::FETCH_OBJECT) /** * 各種通知メールテンプレート更新します。 - Update the registered notification email template. + Update notification email template. * * @param null|\AntiPatternInc\Saasus\Sdk\Auth\Model\UpdateNotificationMessagesParam $requestBody @@ -743,8 +743,8 @@ public function getSignInSettings(string $fetch = self::FETCH_OBJECT) * ユーザーパスワードの要件設定を更新します。 アルファベット、数字、記号の組み合わせで、桁数を長くすれば解読されづらい安全なパスワードを設定することが可能となります。 - Update user password requirement settings. - It is possible to set a secure password that is difficult to decipher by increasing the number of digits by combining alphabets, numbers, and symbols. + Update user password requirements. + Set a secure password that is difficult to decipher by increasing the number of digits by combining alphabets, numbers, and symbols. * * @param null|\AntiPatternInc\Saasus\Sdk\Auth\Model\UpdateSignInSettingsParam $requestBody @@ -770,7 +770,7 @@ public function getCustomizePages(string $fetch = self::FETCH_OBJECT) /** * 認証系画面設定情報(新規登録・ログイン・パスワードリセット等)を更新します。 - Update the authentication screen setting information (new registration, login, password reset, etc.). + Update the authentication page setting information (new registration, login, password reset, etc.). * * @param null|\AntiPatternInc\Saasus\Sdk\Auth\Model\UpdateCustomizePagesParam $requestBody @@ -857,7 +857,7 @@ public function deleteEnv(int $envId, string $fetch = self::FETCH_OBJECT) /** * 環境情報の詳細を取得します。 - Get environment information details. + Get environment details. * * @param int $envId 環境ID(Env ID) @@ -899,6 +899,16 @@ public function createTenantAndPricing(string $fetch = self::FETCH_OBJECT) { return $this->executeEndpoint(new \AntiPatternInc\Saasus\Sdk\Auth\Endpoint\CreateTenantAndPricing(), $fetch); } + /** + * @param string $fetch Fetch mode to use (can be OBJECT or RESPONSE) + * @throws \AntiPatternInc\Saasus\Sdk\Auth\Exception\DeleteStripeTenantAndPricingInternalServerErrorException + * + * @return null|\Psr\Http\Message\ResponseInterface + */ + public function deleteStripeTenantAndPricing(string $fetch = self::FETCH_OBJECT) + { + return $this->executeEndpoint(new \AntiPatternInc\Saasus\Sdk\Auth\Endpoint\DeleteStripeTenantAndPricing(), $fetch); + } /** * @param string $fetch Fetch mode to use (can be OBJECT or RESPONSE) * @throws \AntiPatternInc\Saasus\Sdk\Auth\Exception\GetClientSecretInternalServerErrorException @@ -920,13 +930,19 @@ public function updateClientSecret(string $fetch = self::FETCH_OBJECT) return $this->executeEndpoint(new \AntiPatternInc\Saasus\Sdk\Auth\Endpoint\UpdateClientSecret(), $fetch); } /** - * 一時コードを利用してIDトークン・アクセストークン・リフレッシュトークンを取得する。 + * 一時コードまたはリフレッシュトークンを利用してIDトークン・アクセストークン・リフレッシュトークンを取得する。 - Get an ID token, access token, and refresh token using a temporary code. + Get ID token, access token, and refresh token using a temporary code or a refresh token. * * @param array $queryParameters { - * @var string $code 一時コード(temp code) + * @var string $code 一時コード(Temp Code) + * @var string $auth-flow 認証フロー(Authentication Flow) + tempCodeAuth: 一時コードを利用した認証情報の取得 + refreshTokenAuth: リフレッシュトークンを利用した認証情報の取得 + 指定されていない場合は tempCodeAuth になります + + * @var string $refresh-token リフレッシュトークン(Refresh Token) * } * @param string $fetch Fetch mode to use (can be OBJECT or RESPONSE) * @throws \AntiPatternInc\Saasus\Sdk\Auth\Exception\GetAuthCredentialsNotFoundException @@ -942,7 +958,7 @@ public function getAuthCredentials(array $queryParameters = array(), string $fet * 引数のIDトークン・アクセストークン・リフレッシュトークンを一時保存し取得用の一時コードを返却する。 一時コードの有効期間は発行から10秒です。 - Temporarily save the argument ID token, access token, and refresh token and return the temporary code for acquisition. + Temporarily save the parameter for the ID token, access token, and refresh token and return a temporary code for obtaining. Temporary codes are valid for 10 seconds from issuance. * diff --git a/generated/Auth/Endpoint/CreateAuthCredentials.php b/generated/Auth/Endpoint/CreateAuthCredentials.php index b874fc5..7256c6a 100644 --- a/generated/Auth/Endpoint/CreateAuthCredentials.php +++ b/generated/Auth/Endpoint/CreateAuthCredentials.php @@ -8,7 +8,7 @@ class CreateAuthCredentials extends \AntiPatternInc\Saasus\Sdk\Auth\Runtime\Clie * 引数のIDトークン・アクセストークン・リフレッシュトークンを一時保存し取得用の一時コードを返却する。 一時コードの有効期間は発行から10秒です。 - Temporarily save the argument ID token, access token, and refresh token and return the temporary code for acquisition. + Temporarily save the parameter for the ID token, access token, and refresh token and return a temporary code for obtaining. Temporary codes are valid for 10 seconds from issuance. * diff --git a/generated/Auth/Endpoint/CreateSaasUser.php b/generated/Auth/Endpoint/CreateSaasUser.php index 0bfb993..f090604 100644 --- a/generated/Auth/Endpoint/CreateSaasUser.php +++ b/generated/Auth/Endpoint/CreateSaasUser.php @@ -7,7 +7,7 @@ class CreateSaasUser extends \AntiPatternInc\Saasus\Sdk\Auth\Runtime\Client\Base /** * SaaSにユーザーを作成します。 - Create a user to SaaS. + Create SaaS User. * * @param null|\AntiPatternInc\Saasus\Sdk\Auth\Model\CreateSaasUserParam $requestBody diff --git a/generated/Auth/Endpoint/CreateSecretCode.php b/generated/Auth/Endpoint/CreateSecretCode.php index cff09ab..88c2c52 100644 --- a/generated/Auth/Endpoint/CreateSecretCode.php +++ b/generated/Auth/Endpoint/CreateSecretCode.php @@ -8,7 +8,7 @@ class CreateSecretCode extends \AntiPatternInc\Saasus\Sdk\Auth\Runtime\Client\Ba /** * 認証アプリケーション登録用のシークレットコードを作成します。 - Create a secret code for authenticator application registration. + Create a secret code for authentication application registration. * * @param string $userId ユーザーID(User ID) diff --git a/generated/Auth/Endpoint/CreateTenant.php b/generated/Auth/Endpoint/CreateTenant.php index 5af0f61..6ff984f 100644 --- a/generated/Auth/Endpoint/CreateTenant.php +++ b/generated/Auth/Endpoint/CreateTenant.php @@ -7,7 +7,7 @@ class CreateTenant extends \AntiPatternInc\Saasus\Sdk\Auth\Runtime\Client\BaseEn /** * SaaSus Platform で管理する、テナント情報を作成します。 - Create tenant information in the SaaSus Platform. + Create a tenant managed by the SaaSus Platform. * * @param null|\stdClass $requestBody diff --git a/generated/Auth/Endpoint/CreateTenantAttribute.php b/generated/Auth/Endpoint/CreateTenantAttribute.php index 77b6911..4ac52e6 100644 --- a/generated/Auth/Endpoint/CreateTenantAttribute.php +++ b/generated/Auth/Endpoint/CreateTenantAttribute.php @@ -9,7 +9,7 @@ class CreateTenantAttribute extends \AntiPatternInc\Saasus\Sdk\Auth\Runtime\Clie 例えばテナントの呼び名やメモなどをを持たせることができ、SaaSからSaaSus SDK/APIを利用して取得することができます。 Register additional tenant attributes to be managed by SaaSus Platform. - For example, you can have a tenant name, memo, etc., and you can get it from SaaS using the SaaSus SDK/API. + For example, tenant name, memo, etc., then get the attributes from SaaS using the SaaSus SDK/API. * * @param null|\stdClass $requestBody diff --git a/generated/Auth/Endpoint/CreateTenantUser.php b/generated/Auth/Endpoint/CreateTenantUser.php index 546b9fb..51d511b 100644 --- a/generated/Auth/Endpoint/CreateTenantUser.php +++ b/generated/Auth/Endpoint/CreateTenantUser.php @@ -9,8 +9,8 @@ class CreateTenantUser extends \AntiPatternInc\Saasus\Sdk\Auth\Runtime\Client\Ba * テナントにユーザーを作成します。 attributesを空のオブジェクトにした場合、追加属性は空で作成されます。 - Create a user in your tenant. - If attributes is an empty object, the additional attributes will be created empty. + Create a tenant user. + If attributes is empty, the additional attributes will be created empty. * * @param string $tenantId テナントID(Tenant ID) diff --git a/generated/Auth/Endpoint/CreateTenantUserRoles.php b/generated/Auth/Endpoint/CreateTenantUserRoles.php index 99126e6..fe49c70 100644 --- a/generated/Auth/Endpoint/CreateTenantUserRoles.php +++ b/generated/Auth/Endpoint/CreateTenantUserRoles.php @@ -10,7 +10,7 @@ class CreateTenantUserRoles extends \AntiPatternInc\Saasus\Sdk\Auth\Runtime\Clie /** * テナントのユーザーに役割(ロール)を作成します。 - Create roles for tenant users. + Create roles on tenant users. * * @param string $tenantId テナントID(Tenant ID) diff --git a/generated/Auth/Endpoint/CreateUserAttribute.php b/generated/Auth/Endpoint/CreateUserAttribute.php index 7c22873..5e1625e 100644 --- a/generated/Auth/Endpoint/CreateUserAttribute.php +++ b/generated/Auth/Endpoint/CreateUserAttribute.php @@ -9,9 +9,9 @@ class CreateUserAttribute extends \AntiPatternInc\Saasus\Sdk\Auth\Runtime\Client 例えば、ユーザー名を持たせる、誕生日を持たせるなど、ユーザーに紐付いた項目の定義を行うことができます。 一方で、個人情報を SaaSus Platform 側に持たせたくない場合は、このユーザー属性定義を行わずに SaaS 側で個人情報を持つことを検討してください。 - Register additional user attributes to be retained in the SaaSus Platform. - For example, you can define items associated with a user, such as having a user name, having a birthday, etc. - On the other hand, if you don't want to have personal information on the SaaS Platform side, consider having personal information on the SaaS side without this user attribute definition. + Create additional user attributes to be kept on the SaaSus Platform. + For example, you can define items associated with a user, such as user name, birthday, etc. + If you don't want personal information on the SaaS Platform side, personal information can be kept on the SaaS side without user attribute definition. * * @param null|\stdClass $requestBody diff --git a/generated/Auth/Endpoint/DeleteApiKey.php b/generated/Auth/Endpoint/DeleteApiKey.php index 78cc2c1..41a0460 100644 --- a/generated/Auth/Endpoint/DeleteApiKey.php +++ b/generated/Auth/Endpoint/DeleteApiKey.php @@ -8,7 +8,7 @@ class DeleteApiKey extends \AntiPatternInc\Saasus\Sdk\Auth\Runtime\Client\BaseEn /** * サーバサイド用の API キーを削除します。 - Delete API Keys. + Delete API Key. * * @param string $apiKey APIキー(API key) diff --git a/generated/Auth/Endpoint/DeleteRole.php b/generated/Auth/Endpoint/DeleteRole.php index 032c017..12b30ef 100644 --- a/generated/Auth/Endpoint/DeleteRole.php +++ b/generated/Auth/Endpoint/DeleteRole.php @@ -8,7 +8,7 @@ class DeleteRole extends \AntiPatternInc\Saasus\Sdk\Auth\Runtime\Client\BaseEndp /** * 役割(ロール)を削除します。 - Delete a role. + Delete role. * * @param string $roleName 役割(ロール)名(role name) diff --git a/generated/Auth/Endpoint/DeleteSaasUser.php b/generated/Auth/Endpoint/DeleteSaasUser.php index 67c2393..ade0951 100644 --- a/generated/Auth/Endpoint/DeleteSaasUser.php +++ b/generated/Auth/Endpoint/DeleteSaasUser.php @@ -8,7 +8,7 @@ class DeleteSaasUser extends \AntiPatternInc\Saasus\Sdk\Auth\Runtime\Client\Base /** * ユーザーIDを元に一致するユーザーをテナントからすべて削除し、SaaSからも削除します。 - Deletes all matching users based on the user ID from the tenant and also deletes them from SaaS. + Delete all users with matching user ID from the tenant and SaaS. * * @param string $userId ユーザーID(User ID) diff --git a/generated/Auth/Endpoint/DeleteStripeTenantAndPricing.php b/generated/Auth/Endpoint/DeleteStripeTenantAndPricing.php new file mode 100644 index 0000000..ed00c63 --- /dev/null +++ b/generated/Auth/Endpoint/DeleteStripeTenantAndPricing.php @@ -0,0 +1,44 @@ + array('application/json')); + } + /** + * {@inheritdoc} + * + * @throws \AntiPatternInc\Saasus\Sdk\Auth\Exception\DeleteStripeTenantAndPricingInternalServerErrorException + * + * @return null + */ + protected function transformResponseBody(string $body, int $status, \Symfony\Component\Serializer\SerializerInterface $serializer, ?string $contentType = null) + { + if (200 === $status) { + return null; + } + if (is_null($contentType) === false && (500 === $status && mb_strpos($contentType, 'application/json') !== false)) { + throw new \AntiPatternInc\Saasus\Sdk\Auth\Exception\DeleteStripeTenantAndPricingInternalServerErrorException($serializer->deserialize($body, 'AntiPatternInc\\Saasus\\Sdk\\Auth\\Model\\Error', 'json')); + } + } + public function getAuthenticationScopes() : array + { + return array('Bearer'); + } +} \ No newline at end of file diff --git a/generated/Auth/Endpoint/DeleteTenant.php b/generated/Auth/Endpoint/DeleteTenant.php index 1524130..98c9c0b 100644 --- a/generated/Auth/Endpoint/DeleteTenant.php +++ b/generated/Auth/Endpoint/DeleteTenant.php @@ -8,7 +8,7 @@ class DeleteTenant extends \AntiPatternInc\Saasus\Sdk\Auth\Runtime\Client\BaseEn /** * SaaSus Platform で管理する、テナントの詳細情報を削除します。 - Delete tenant information managed by SaaSus Platform. + Delete SaaSus Platform tenant. * * @param string $tenantId テナントID(Tenant ID) diff --git a/generated/Auth/Endpoint/DeleteTenantAttribute.php b/generated/Auth/Endpoint/DeleteTenantAttribute.php index a257a17..b6f05c2 100644 --- a/generated/Auth/Endpoint/DeleteTenantAttribute.php +++ b/generated/Auth/Endpoint/DeleteTenantAttribute.php @@ -8,10 +8,10 @@ class DeleteTenantAttribute extends \AntiPatternInc\Saasus\Sdk\Auth\Runtime\Clie /** * SaaSus Platform で管理する、テナントの追加属性の削除を行います。 - Deletes additional attributes of tenants managed by SaaSus Platform. + Deletes tenant attributes managed by SaaSus Platform. * - * @param string $attributeName 属性名(attribute name) + * @param string $attributeName 属性名(Attribute Name) */ public function __construct(string $attributeName) { diff --git a/generated/Auth/Endpoint/DeleteTenantUserRole.php b/generated/Auth/Endpoint/DeleteTenantUserRole.php index c020f95..1527499 100644 --- a/generated/Auth/Endpoint/DeleteTenantUserRole.php +++ b/generated/Auth/Endpoint/DeleteTenantUserRole.php @@ -11,7 +11,7 @@ class DeleteTenantUserRole extends \AntiPatternInc\Saasus\Sdk\Auth\Runtime\Clien /** * テナントのユーザーから役割(ロール)を削除します。 - Delete a role (role) from a tenant user. + Remove a role from a tenant user. * * @param string $tenantId テナントID(Tenant ID) diff --git a/generated/Auth/Endpoint/DeleteUserAttribute.php b/generated/Auth/Endpoint/DeleteUserAttribute.php index 70886aa..35bd166 100644 --- a/generated/Auth/Endpoint/DeleteUserAttribute.php +++ b/generated/Auth/Endpoint/DeleteUserAttribute.php @@ -8,10 +8,10 @@ class DeleteUserAttribute extends \AntiPatternInc\Saasus\Sdk\Auth\Runtime\Client /** * SaaSus Platform にて保持するユーザーの追加属性を削除します。 - Delete the additional attributes of the user retained by the SaaSus Platform. + Delete user attributes kept on the SaaSus Platform. * - * @param string $attributeName 属性名(attribute name) + * @param string $attributeName 属性名(Attribute Name) */ public function __construct(string $attributeName) { diff --git a/generated/Auth/Endpoint/GetAllTenantUser.php b/generated/Auth/Endpoint/GetAllTenantUser.php index 5149b90..c1ddf96 100644 --- a/generated/Auth/Endpoint/GetAllTenantUser.php +++ b/generated/Auth/Endpoint/GetAllTenantUser.php @@ -9,8 +9,8 @@ class GetAllTenantUser extends \AntiPatternInc\Saasus\Sdk\Auth\Runtime\Client\Ba * ユーザーIDからテナントに所属しているユーザー情報を取得します。 複数テナントに所属している場合は別のオブジェクトとして返却されます。 - Get the user information belonging to the tenant from the user ID. - If it belongs to multiple tenants, it will be returned as another object. + Get information on user belonging to the tenant from the user ID. + If the user belongs to multiple tenants, it will be returned as another object. * * @param string $userId ユーザーID(User ID) diff --git a/generated/Auth/Endpoint/GetAuthCredentials.php b/generated/Auth/Endpoint/GetAuthCredentials.php index 11753e7..dea9032 100644 --- a/generated/Auth/Endpoint/GetAuthCredentials.php +++ b/generated/Auth/Endpoint/GetAuthCredentials.php @@ -5,13 +5,19 @@ class GetAuthCredentials extends \AntiPatternInc\Saasus\Sdk\Auth\Runtime\Client\BaseEndpoint implements \AntiPatternInc\Saasus\Sdk\Auth\Runtime\Client\Endpoint { /** - * 一時コードを利用してIDトークン・アクセストークン・リフレッシュトークンを取得する。 + * 一時コードまたはリフレッシュトークンを利用してIDトークン・アクセストークン・リフレッシュトークンを取得する。 - Get an ID token, access token, and refresh token using a temporary code. + Get ID token, access token, and refresh token using a temporary code or a refresh token. * * @param array $queryParameters { - * @var string $code 一時コード(temp code) + * @var string $code 一時コード(Temp Code) + * @var string $auth-flow 認証フロー(Authentication Flow) + tempCodeAuth: 一時コードを利用した認証情報の取得 + refreshTokenAuth: リフレッシュトークンを利用した認証情報の取得 + 指定されていない場合は tempCodeAuth になります + + * @var string $refresh-token リフレッシュトークン(Refresh Token) * } */ public function __construct(array $queryParameters = array()) @@ -38,10 +44,12 @@ public function getExtraHeaders() : array protected function getQueryOptionsResolver() : \Symfony\Component\OptionsResolver\OptionsResolver { $optionsResolver = parent::getQueryOptionsResolver(); - $optionsResolver->setDefined(array('code')); - $optionsResolver->setRequired(array('code')); + $optionsResolver->setDefined(array('code', 'auth-flow', 'refresh-token')); + $optionsResolver->setRequired(array()); $optionsResolver->setDefaults(array()); $optionsResolver->addAllowedTypes('code', array('string')); + $optionsResolver->addAllowedTypes('auth-flow', array('string')); + $optionsResolver->addAllowedTypes('refresh-token', array('string')); return $optionsResolver; } /** diff --git a/generated/Auth/Endpoint/GetEnv.php b/generated/Auth/Endpoint/GetEnv.php index 1464414..5f08417 100644 --- a/generated/Auth/Endpoint/GetEnv.php +++ b/generated/Auth/Endpoint/GetEnv.php @@ -8,7 +8,7 @@ class GetEnv extends \AntiPatternInc\Saasus\Sdk\Auth\Runtime\Client\BaseEndpoint /** * 環境情報の詳細を取得します。 - Get environment information details. + Get environment details. * * @param int $envId 環境ID(Env ID) diff --git a/generated/Auth/Endpoint/GetSaasUser.php b/generated/Auth/Endpoint/GetSaasUser.php index b04b5b5..ff7bc17 100644 --- a/generated/Auth/Endpoint/GetSaasUser.php +++ b/generated/Auth/Endpoint/GetSaasUser.php @@ -8,7 +8,7 @@ class GetSaasUser extends \AntiPatternInc\Saasus\Sdk\Auth\Runtime\Client\BaseEnd /** * ユーザーIDからユーザー情報を取得します。 - Get user information from user ID. + Get user information based on user ID. * * @param string $userId ユーザーID(User ID) diff --git a/generated/Auth/Endpoint/GetTenant.php b/generated/Auth/Endpoint/GetTenant.php index cf0b1b3..11fdf46 100644 --- a/generated/Auth/Endpoint/GetTenant.php +++ b/generated/Auth/Endpoint/GetTenant.php @@ -8,7 +8,7 @@ class GetTenant extends \AntiPatternInc\Saasus\Sdk\Auth\Runtime\Client\BaseEndpo /** * SaaSus Platform で管理する、テナントの詳細情報を取得します。 - Get detailed information about a tenant registered with the SaaSus Platform. + Get the details of tenant managed on the SaaSus Platform. * * @param string $tenantId テナントID(Tenant ID) diff --git a/generated/Auth/Endpoint/GetTenantUser.php b/generated/Auth/Endpoint/GetTenantUser.php index ce8f64a..4cc40c2 100644 --- a/generated/Auth/Endpoint/GetTenantUser.php +++ b/generated/Auth/Endpoint/GetTenantUser.php @@ -9,7 +9,7 @@ class GetTenantUser extends \AntiPatternInc\Saasus\Sdk\Auth\Runtime\Client\BaseE /** * テナントのユーザーをIDから一件取得します。 - Acquires one tenant user by specifying the ID. + Get one tenant user by specific ID. * * @param string $tenantId テナントID(Tenant ID) diff --git a/generated/Auth/Endpoint/GetTenantUsers.php b/generated/Auth/Endpoint/GetTenantUsers.php index 7ba2b4d..0ace176 100644 --- a/generated/Auth/Endpoint/GetTenantUsers.php +++ b/generated/Auth/Endpoint/GetTenantUsers.php @@ -8,8 +8,8 @@ class GetTenantUsers extends \AntiPatternInc\Saasus\Sdk\Auth\Runtime\Client\Base /** * テナントに所属するユーザーを全件取得します。 idは一意です。 - Get all users belonging to the tenant. - id is unique. + Get all the users belonging to the tenant. + Id is unique. * * @param string $tenantId テナントID(Tenant ID) diff --git a/generated/Auth/Endpoint/GetUserInfo.php b/generated/Auth/Endpoint/GetUserInfo.php index c9d7e00..2fb8465 100644 --- a/generated/Auth/Endpoint/GetUserInfo.php +++ b/generated/Auth/Endpoint/GetUserInfo.php @@ -12,12 +12,12 @@ class GetUserInfo extends \AntiPatternInc\Saasus\Sdk\Auth\Runtime\Client\BaseEnd User information is obtained based on the ID token of the SaaS user (registered user). The ID token is passed to the Callback URL during login from the SaaSus Platform generated login screen. - By getting the ID token from the URL on the server side and calling this API, you can get the information of the user. + User information can be obtained from calling this API with an ID token from the URL on the server side. Since the acquired tenant, role (role), price plan, etc. are included, it is possible to implement authorization based on it. * * @param array $queryParameters { - * @var string $token IDトークン(ID token) + * @var string $token IDトークン(ID Token) * } */ public function __construct(array $queryParameters = array()) diff --git a/generated/Auth/Endpoint/UpdateAuthInfo.php b/generated/Auth/Endpoint/UpdateAuthInfo.php index 924e93c..77c6bf9 100644 --- a/generated/Auth/Endpoint/UpdateAuthInfo.php +++ b/generated/Auth/Endpoint/UpdateAuthInfo.php @@ -8,7 +8,7 @@ class UpdateAuthInfo extends \AntiPatternInc\Saasus\Sdk\Auth\Runtime\Client\Base * ログイン後に認証情報を渡す SaaS の URL を登録します。 ここで登録した URL に認証情報を渡し、SaaSus SDK を利用してこの Callback の実装をすることが可能となります。 - Register a SaaS URL to pass authentication after login. + Register post-login SaaS URL for authentication information. It is possible to pass authentication information to the URL registered here and implement this Callback using the SaaSus SDK. * diff --git a/generated/Auth/Endpoint/UpdateBasicInfo.php b/generated/Auth/Endpoint/UpdateBasicInfo.php index a325b76..4c3a3e0 100644 --- a/generated/Auth/Endpoint/UpdateBasicInfo.php +++ b/generated/Auth/Endpoint/UpdateBasicInfo.php @@ -9,9 +9,9 @@ class UpdateBasicInfo extends \AntiPatternInc\Saasus\Sdk\Auth\Runtime\Client\Bas CNAME レコードが生成されますので、 DNS に設定して下さい。 既に稼働中の SaaS アプリケーションに設定している場合には、動作に影響があります。 - Update the domain name set as a parameter based on the SaaS ID. - A CNAME record will be generated, so set it in your DNS. - If you set it on a SaaS application that is already running, it will affect your behavior. + Update the domain name that was set as a parameter based on the SaaS ID. + After the CNAME record is generated, set it in your DNS. + If it is set on a SaaS application that is already running, it will affect the behavior. * * @param null|\AntiPatternInc\Saasus\Sdk\Auth\Model\UpdateBasicInfoParam $requestBody diff --git a/generated/Auth/Endpoint/UpdateCustomizePages.php b/generated/Auth/Endpoint/UpdateCustomizePages.php index dd1e93c..dc08030 100644 --- a/generated/Auth/Endpoint/UpdateCustomizePages.php +++ b/generated/Auth/Endpoint/UpdateCustomizePages.php @@ -7,7 +7,7 @@ class UpdateCustomizePages extends \AntiPatternInc\Saasus\Sdk\Auth\Runtime\Clien /** * 認証系画面設定情報(新規登録・ログイン・パスワードリセット等)を更新します。 - Update the authentication screen setting information (new registration, login, password reset, etc.). + Update the authentication page setting information (new registration, login, password reset, etc.). * * @param null|\AntiPatternInc\Saasus\Sdk\Auth\Model\UpdateCustomizePagesParam $requestBody diff --git a/generated/Auth/Endpoint/UpdateNotificationMessages.php b/generated/Auth/Endpoint/UpdateNotificationMessages.php index bd0cc7d..f89c98b 100644 --- a/generated/Auth/Endpoint/UpdateNotificationMessages.php +++ b/generated/Auth/Endpoint/UpdateNotificationMessages.php @@ -7,7 +7,7 @@ class UpdateNotificationMessages extends \AntiPatternInc\Saasus\Sdk\Auth\Runtime /** * 各種通知メールテンプレート更新します。 - Update the registered notification email template. + Update notification email template. * * @param null|\AntiPatternInc\Saasus\Sdk\Auth\Model\UpdateNotificationMessagesParam $requestBody diff --git a/generated/Auth/Endpoint/UpdateSaasUserEmail.php b/generated/Auth/Endpoint/UpdateSaasUserEmail.php index e46800d..3ad95ea 100644 --- a/generated/Auth/Endpoint/UpdateSaasUserEmail.php +++ b/generated/Auth/Endpoint/UpdateSaasUserEmail.php @@ -8,7 +8,7 @@ class UpdateSaasUserEmail extends \AntiPatternInc\Saasus\Sdk\Auth\Runtime\Client /** * ユーザーのメールアドレスを変更します。 - Change a user's email. + Change user's email. * * @param string $userId ユーザーID(User ID) diff --git a/generated/Auth/Endpoint/UpdateSaasUserPassword.php b/generated/Auth/Endpoint/UpdateSaasUserPassword.php index 0efaeea..019f17a 100644 --- a/generated/Auth/Endpoint/UpdateSaasUserPassword.php +++ b/generated/Auth/Endpoint/UpdateSaasUserPassword.php @@ -8,7 +8,7 @@ class UpdateSaasUserPassword extends \AntiPatternInc\Saasus\Sdk\Auth\Runtime\Cli /** * ユーザーのログインパスワードを変更します。 - Change a user's login password. + Change user's login password. * * @param string $userId ユーザーID(User ID) diff --git a/generated/Auth/Endpoint/UpdateSignInSettings.php b/generated/Auth/Endpoint/UpdateSignInSettings.php index 9565ed2..006cf80 100644 --- a/generated/Auth/Endpoint/UpdateSignInSettings.php +++ b/generated/Auth/Endpoint/UpdateSignInSettings.php @@ -8,8 +8,8 @@ class UpdateSignInSettings extends \AntiPatternInc\Saasus\Sdk\Auth\Runtime\Clien * ユーザーパスワードの要件設定を更新します。 アルファベット、数字、記号の組み合わせで、桁数を長くすれば解読されづらい安全なパスワードを設定することが可能となります。 - Update user password requirement settings. - It is possible to set a secure password that is difficult to decipher by increasing the number of digits by combining alphabets, numbers, and symbols. + Update user password requirements. + Set a secure password that is difficult to decipher by increasing the number of digits by combining alphabets, numbers, and symbols. * * @param null|\AntiPatternInc\Saasus\Sdk\Auth\Model\UpdateSignInSettingsParam $requestBody diff --git a/generated/Auth/Endpoint/UpdateSoftwareToken.php b/generated/Auth/Endpoint/UpdateSoftwareToken.php index 410124c..a075768 100644 --- a/generated/Auth/Endpoint/UpdateSoftwareToken.php +++ b/generated/Auth/Endpoint/UpdateSoftwareToken.php @@ -8,7 +8,7 @@ class UpdateSoftwareToken extends \AntiPatternInc\Saasus\Sdk\Auth\Runtime\Client /** * 認証アプリケーションを登録します。 - Register an authenticator application. + Register an authentication application. * * @param string $userId ユーザーID(User ID) diff --git a/generated/Auth/Endpoint/UpdateTenant.php b/generated/Auth/Endpoint/UpdateTenant.php index f0b547f..6dbdac8 100644 --- a/generated/Auth/Endpoint/UpdateTenant.php +++ b/generated/Auth/Endpoint/UpdateTenant.php @@ -8,7 +8,7 @@ class UpdateTenant extends \AntiPatternInc\Saasus\Sdk\Auth\Runtime\Client\BaseEn /** * SaaSus Platform で管理する、テナントの詳細情報を更新します。 - Update tenant details managed by the SaaSus Platform. + Update SaaSus Platform tenant details. * * @param string $tenantId テナントID(Tenant ID) diff --git a/generated/Auth/Endpoint/UpdateTenantUser.php b/generated/Auth/Endpoint/UpdateTenantUser.php index a63c129..c67d681 100644 --- a/generated/Auth/Endpoint/UpdateTenantUser.php +++ b/generated/Auth/Endpoint/UpdateTenantUser.php @@ -9,7 +9,7 @@ class UpdateTenantUser extends \AntiPatternInc\Saasus\Sdk\Auth\Runtime\Client\Ba /** * テナントのユーザー属性情報を更新します。 - Update tenant user attribute information. + Update tenant user attributes. * * @param string $tenantId テナントID(Tenant ID) diff --git a/generated/Auth/Endpoint/UpdateUserMfaPreference.php b/generated/Auth/Endpoint/UpdateUserMfaPreference.php index f12ad0d..1e47653 100644 --- a/generated/Auth/Endpoint/UpdateUserMfaPreference.php +++ b/generated/Auth/Endpoint/UpdateUserMfaPreference.php @@ -8,7 +8,7 @@ class UpdateUserMfaPreference extends \AntiPatternInc\Saasus\Sdk\Auth\Runtime\Cl /** * ユーザーのMFA設定を更新します。 - Update the user's MFA settings. + Update user's MFA settings. * * @param string $userId ユーザーID(User ID) diff --git a/generated/Auth/Exception/DeleteStripeTenantAndPricingInternalServerErrorException.php b/generated/Auth/Exception/DeleteStripeTenantAndPricingInternalServerErrorException.php new file mode 100644 index 0000000..61b5048 --- /dev/null +++ b/generated/Auth/Exception/DeleteStripeTenantAndPricingInternalServerErrorException.php @@ -0,0 +1,20 @@ +error = $error; + } + public function getError() : \AntiPatternInc\Saasus\Sdk\Auth\Model\Error + { + return $this->error; + } +} \ No newline at end of file diff --git a/generated/Auth/Model/AccountVerification.php b/generated/Auth/Model/AccountVerification.php index d907e94..62cc6e0 100644 --- a/generated/Auth/Model/AccountVerification.php +++ b/generated/Auth/Model/AccountVerification.php @@ -15,7 +15,7 @@ public function isInitialized($property) : bool /** * code: 検証コード(verification code) link: 検証リンク(verification link) - ※ 未提供の機能のため、変更・保存はできません(Unable to change/save due to unprovided function) + ※ 未提供の機能のため、変更・保存はできません(This function is not yet provided, so it cannot be changed or saved.) * * @var string @@ -24,7 +24,7 @@ public function isInitialized($property) : bool /** * email: Eメール(e-mail) sms: SMS - smsOrEmail: SMS不可の場合にEメール(Email if SMS is not possible) + smsOrEmail: SMS不可の場合にEメール(email if SMS is not possible) * * @var string @@ -33,7 +33,7 @@ public function isInitialized($property) : bool /** * code: 検証コード(verification code) link: 検証リンク(verification link) - ※ 未提供の機能のため、変更・保存はできません(Unable to change/save due to unprovided function) + ※ 未提供の機能のため、変更・保存はできません(This function is not yet provided, so it cannot be changed or saved.) * * @return string @@ -45,7 +45,7 @@ public function getVerificationMethod() : string /** * code: 検証コード(verification code) link: 検証リンク(verification link) - ※ 未提供の機能のため、変更・保存はできません(Unable to change/save due to unprovided function) + ※ 未提供の機能のため、変更・保存はできません(This function is not yet provided, so it cannot be changed or saved.) * * @param string $verificationMethod @@ -61,7 +61,7 @@ public function setVerificationMethod(string $verificationMethod) : self /** * email: Eメール(e-mail) sms: SMS - smsOrEmail: SMS不可の場合にEメール(Email if SMS is not possible) + smsOrEmail: SMS不可の場合にEメール(email if SMS is not possible) * * @return string @@ -73,7 +73,7 @@ public function getSendingTo() : string /** * email: Eメール(e-mail) sms: SMS - smsOrEmail: SMS不可の場合にEメール(Email if SMS is not possible) + smsOrEmail: SMS不可の場合にEメール(email if SMS is not possible) * * @param string $sendingTo diff --git a/generated/Auth/Model/ApiKeys.php b/generated/Auth/Model/ApiKeys.php index 52ddb7f..b40996b 100644 --- a/generated/Auth/Model/ApiKeys.php +++ b/generated/Auth/Model/ApiKeys.php @@ -13,13 +13,13 @@ public function isInitialized($property) : bool return array_key_exists($property, $this->initialized); } /** - * APIキー(API key) + * APIキー(API Key) * * @var string[] */ protected $apiKeys; /** - * APIキー(API key) + * APIキー(API Key) * * @return string[] */ @@ -28,7 +28,7 @@ public function getApiKeys() : array return $this->apiKeys; } /** - * APIキー(API key) + * APIキー(API Key) * * @param string[] $apiKeys * diff --git a/generated/Auth/Model/Attribute.php b/generated/Auth/Model/Attribute.php index 5d03461..e916f81 100644 --- a/generated/Auth/Model/Attribute.php +++ b/generated/Auth/Model/Attribute.php @@ -19,14 +19,14 @@ public function isInitialized($property) : bool */ protected $attributeName; /** - * 表示名(Display name) + * 表示名(display name) * * @var string */ protected $displayName; /** * 型(dateはYYYY-MM-DDの形式で使用する事ができます。) - (Type (date can be used in YYYY-MM-DD format.)) + (Type (date can be set to YYYY-MM-DD format.)) * * @var string @@ -55,7 +55,7 @@ public function setAttributeName(string $attributeName) : self return $this; } /** - * 表示名(Display name) + * 表示名(display name) * * @return string */ @@ -64,7 +64,7 @@ public function getDisplayName() : string return $this->displayName; } /** - * 表示名(Display name) + * 表示名(display name) * * @param string $displayName * @@ -78,7 +78,7 @@ public function setDisplayName(string $displayName) : self } /** * 型(dateはYYYY-MM-DDの形式で使用する事ができます。) - (Type (date can be used in YYYY-MM-DD format.)) + (Type (date can be set to YYYY-MM-DD format.)) * * @return string @@ -89,7 +89,7 @@ public function getAttributeType() : string } /** * 型(dateはYYYY-MM-DDの形式で使用する事ができます。) - (Type (date can be used in YYYY-MM-DD format.)) + (Type (date can be set to YYYY-MM-DD format.)) * * @param string $attributeType diff --git a/generated/Auth/Model/AuthInfo.php b/generated/Auth/Model/AuthInfo.php index 2bb14e1..38512d5 100644 --- a/generated/Auth/Model/AuthInfo.php +++ b/generated/Auth/Model/AuthInfo.php @@ -13,13 +13,13 @@ public function isInitialized($property) : bool return array_key_exists($property, $this->initialized); } /** - * 認証後遷移先(Transition destination after authentication) + * 認証後遷移先(Redirect After Authentication) * * @var string */ protected $callbackUrl; /** - * 認証後遷移先(Transition destination after authentication) + * 認証後遷移先(Redirect After Authentication) * * @return string */ @@ -28,7 +28,7 @@ public function getCallbackUrl() : string return $this->callbackUrl; } /** - * 認証後遷移先(Transition destination after authentication) + * 認証後遷移先(Redirect After Authentication) * * @param string $callbackUrl * diff --git a/generated/Auth/Model/BasicInfo.php b/generated/Auth/Model/BasicInfo.php index 56160aa..5738e69 100644 --- a/generated/Auth/Model/BasicInfo.php +++ b/generated/Auth/Model/BasicInfo.php @@ -13,13 +13,13 @@ public function isInitialized($property) : bool return array_key_exists($property, $this->initialized); } /** - * ドメイン名(Domain name) + * ドメイン名(Domain Name) * * @var string */ protected $domainName; /** - * DNSレコードの検証結果(DNS record verification results) + * DNSレコードの検証結果(DNS Record Verification Results) * * @var bool */ @@ -37,25 +37,25 @@ public function isInitialized($property) : bool */ protected $cloudFrontDnsRecord; /** - * DKIM DNS レコード(DKIM DNS records) + * DKIM DNS レコード(DKIM DNS Records) * * @var DnsRecord[] */ protected $dkimDnsRecords; /** - * デフォルトドメイン名(default domain name) + * デフォルトドメイン名(Default Domain Name) * * @var string */ protected $defaultDomainName; /** - * 認証メールの送信元メールアドレス(Sender email address of authentication email) + * 認証メールの送信元メールアドレス(Sender Email for Authentication Email) * * @var string */ protected $fromEmailAddress; /** - * ドメイン名(Domain name) + * ドメイン名(Domain Name) * * @return string */ @@ -64,7 +64,7 @@ public function getDomainName() : string return $this->domainName; } /** - * ドメイン名(Domain name) + * ドメイン名(Domain Name) * * @param string $domainName * @@ -77,7 +77,7 @@ public function setDomainName(string $domainName) : self return $this; } /** - * DNSレコードの検証結果(DNS record verification results) + * DNSレコードの検証結果(DNS Record Verification Results) * * @return bool */ @@ -86,7 +86,7 @@ public function getIsDnsValidated() : bool return $this->isDnsValidated; } /** - * DNSレコードの検証結果(DNS record verification results) + * DNSレコードの検証結果(DNS Record Verification Results) * * @param bool $isDnsValidated * @@ -143,7 +143,7 @@ public function setCloudFrontDnsRecord(DnsRecord $cloudFrontDnsRecord) : self return $this; } /** - * DKIM DNS レコード(DKIM DNS records) + * DKIM DNS レコード(DKIM DNS Records) * * @return DnsRecord[] */ @@ -152,7 +152,7 @@ public function getDkimDnsRecords() : array return $this->dkimDnsRecords; } /** - * DKIM DNS レコード(DKIM DNS records) + * DKIM DNS レコード(DKIM DNS Records) * * @param DnsRecord[] $dkimDnsRecords * @@ -165,7 +165,7 @@ public function setDkimDnsRecords(array $dkimDnsRecords) : self return $this; } /** - * デフォルトドメイン名(default domain name) + * デフォルトドメイン名(Default Domain Name) * * @return string */ @@ -174,7 +174,7 @@ public function getDefaultDomainName() : string return $this->defaultDomainName; } /** - * デフォルトドメイン名(default domain name) + * デフォルトドメイン名(Default Domain Name) * * @param string $defaultDomainName * @@ -187,7 +187,7 @@ public function setDefaultDomainName(string $defaultDomainName) : self return $this; } /** - * 認証メールの送信元メールアドレス(Sender email address of authentication email) + * 認証メールの送信元メールアドレス(Sender Email for Authentication Email) * * @return string */ @@ -196,7 +196,7 @@ public function getFromEmailAddress() : string return $this->fromEmailAddress; } /** - * 認証メールの送信元メールアドレス(Sender email address of authentication email) + * 認証メールの送信元メールアドレス(Sender Email for Authentication Email) * * @param string $fromEmailAddress * diff --git a/generated/Auth/Model/CreateSaasUserParam.php b/generated/Auth/Model/CreateSaasUserParam.php index 2a65a16..97343fc 100644 --- a/generated/Auth/Model/CreateSaasUserParam.php +++ b/generated/Auth/Model/CreateSaasUserParam.php @@ -13,19 +13,19 @@ public function isInitialized($property) : bool return array_key_exists($property, $this->initialized); } /** - * メールアドレス(e-mail) + * メールアドレス(E-mail) * * @var string */ protected $email; /** - * パスワード(password) + * パスワード(Password) * * @var string */ protected $password; /** - * メールアドレス(e-mail) + * メールアドレス(E-mail) * * @return string */ @@ -34,7 +34,7 @@ public function getEmail() : string return $this->email; } /** - * メールアドレス(e-mail) + * メールアドレス(E-mail) * * @param string $email * @@ -47,7 +47,7 @@ public function setEmail(string $email) : self return $this; } /** - * パスワード(password) + * パスワード(Password) * * @return string */ @@ -56,7 +56,7 @@ public function getPassword() : string return $this->password; } /** - * パスワード(password) + * パスワード(Password) * * @param string $password * diff --git a/generated/Auth/Model/CreateTenantUserParam.php b/generated/Auth/Model/CreateTenantUserParam.php index 5d77d8c..68bd077 100644 --- a/generated/Auth/Model/CreateTenantUserParam.php +++ b/generated/Auth/Model/CreateTenantUserParam.php @@ -21,7 +21,7 @@ public function isInitialized($property) : bool /** * 属性情報(SaaS 開発コンソールでテナント属性定義を行い設定された情報を取得します) - Attribute information (Obtain the information set by defining tenant attributes in the SaaS development console) + Attribute information (Get information set by defining tenant attributes in the SaaS development console) * * @var mixed[] @@ -52,7 +52,7 @@ public function setEmail(string $email) : self /** * 属性情報(SaaS 開発コンソールでテナント属性定義を行い設定された情報を取得します) - Attribute information (Obtain the information set by defining tenant attributes in the SaaS development console) + Attribute information (Get information set by defining tenant attributes in the SaaS development console) * * @return mixed[] @@ -64,7 +64,7 @@ public function getAttributes() : iterable /** * 属性情報(SaaS 開発コンソールでテナント属性定義を行い設定された情報を取得します) - Attribute information (Obtain the information set by defining tenant attributes in the SaaS development console) + Attribute information (Get information set by defining tenant attributes in the SaaS development console) * * @param mixed[] $attributes diff --git a/generated/Auth/Model/CreateTenantUserRolesParam.php b/generated/Auth/Model/CreateTenantUserRolesParam.php index 4201570..548962a 100644 --- a/generated/Auth/Model/CreateTenantUserRolesParam.php +++ b/generated/Auth/Model/CreateTenantUserRolesParam.php @@ -13,13 +13,13 @@ public function isInitialized($property) : bool return array_key_exists($property, $this->initialized); } /** - * 役割(ロール)情報(Role info) + * 役割(ロール)情報(Role Info) * * @var string[] */ protected $roleNames; /** - * 役割(ロール)情報(Role info) + * 役割(ロール)情報(Role Info) * * @return string[] */ @@ -28,7 +28,7 @@ public function getRoleNames() : array return $this->roleNames; } /** - * 役割(ロール)情報(Role info) + * 役割(ロール)情報(Role Info) * * @param string[] $roleNames * diff --git a/generated/Auth/Model/CustomizePageProps.php b/generated/Auth/Model/CustomizePageProps.php index 540a2c2..32cc775 100644 --- a/generated/Auth/Model/CustomizePageProps.php +++ b/generated/Auth/Model/CustomizePageProps.php @@ -16,21 +16,21 @@ public function isInitialized($property) : bool * 画面のHTMLを編集できます ※ 未提供の機能のため、変更・保存はできません - You can edit the HTML of the screen - ※ Unable to change/save due to unprovided function + Edit page HTML + ※ This function is not yet provided, so it cannot be changed or saved. * * @var string */ protected $htmlContents; /** - * 利用規約の同意チェックボックスを表示するが設定されているか(Whether or not to display the agreement check box for the terms of use) + * 利用規約の同意チェックボックスを表示するが設定されているか(display the terms of use agreement check box) * * @var bool */ protected $isTermsOfService; /** - * プライバシーポリシーチェックボックスを表示するが設定されているか(Whether to show the privacy policy checkbox) + * プライバシーポリシーチェックボックスを表示するが設定されているか(show the privacy policy checkbox) * * @var bool */ @@ -39,8 +39,8 @@ public function isInitialized($property) : bool * 画面のHTMLを編集できます ※ 未提供の機能のため、変更・保存はできません - You can edit the HTML of the screen - ※ Unable to change/save due to unprovided function + Edit page HTML + ※ This function is not yet provided, so it cannot be changed or saved. * * @return string @@ -53,8 +53,8 @@ public function getHtmlContents() : string * 画面のHTMLを編集できます ※ 未提供の機能のため、変更・保存はできません - You can edit the HTML of the screen - ※ Unable to change/save due to unprovided function + Edit page HTML + ※ This function is not yet provided, so it cannot be changed or saved. * * @param string $htmlContents @@ -68,7 +68,7 @@ public function setHtmlContents(string $htmlContents) : self return $this; } /** - * 利用規約の同意チェックボックスを表示するが設定されているか(Whether or not to display the agreement check box for the terms of use) + * 利用規約の同意チェックボックスを表示するが設定されているか(display the terms of use agreement check box) * * @return bool */ @@ -77,7 +77,7 @@ public function getIsTermsOfService() : bool return $this->isTermsOfService; } /** - * 利用規約の同意チェックボックスを表示するが設定されているか(Whether or not to display the agreement check box for the terms of use) + * 利用規約の同意チェックボックスを表示するが設定されているか(display the terms of use agreement check box) * * @param bool $isTermsOfService * @@ -90,7 +90,7 @@ public function setIsTermsOfService(bool $isTermsOfService) : self return $this; } /** - * プライバシーポリシーチェックボックスを表示するが設定されているか(Whether to show the privacy policy checkbox) + * プライバシーポリシーチェックボックスを表示するが設定されているか(show the privacy policy checkbox) * * @return bool */ @@ -99,7 +99,7 @@ public function getIsPrivacyPolicy() : bool return $this->isPrivacyPolicy; } /** - * プライバシーポリシーチェックボックスを表示するが設定されているか(Whether to show the privacy policy checkbox) + * プライバシーポリシーチェックボックスを表示するが設定されているか(show the privacy policy checkbox) * * @param bool $isPrivacyPolicy * diff --git a/generated/Auth/Model/CustomizePageSettings.php b/generated/Auth/Model/CustomizePageSettings.php index e7044b3..6e19163 100644 --- a/generated/Auth/Model/CustomizePageSettings.php +++ b/generated/Auth/Model/CustomizePageSettings.php @@ -13,7 +13,7 @@ public function isInitialized($property) : bool return array_key_exists($property, $this->initialized); } /** - * サービスアイコン(Service Icon) + * サービスアイコン(service icon) * * @var string */ @@ -25,19 +25,19 @@ public function isInitialized($property) : bool */ protected $favicon; /** - * サービス名(Service name) + * サービス名(service name) * * @var string */ protected $title; /** - * 利用規約URL(Terms of use URL) + * 利用規約URL(terms of service URL) * * @var string */ protected $termsOfServiceUrl; /** - * プライバシーポリシーURL(Privacy Policy URL) + * プライバシーポリシーURL(privacy policy URL) * * @var string */ @@ -49,7 +49,7 @@ public function isInitialized($property) : bool */ protected $googleTagManagerContainerId; /** - * サービスアイコン(Service Icon) + * サービスアイコン(service icon) * * @return string */ @@ -58,7 +58,7 @@ public function getIcon() : string return $this->icon; } /** - * サービスアイコン(Service Icon) + * サービスアイコン(service icon) * * @param string $icon * @@ -93,7 +93,7 @@ public function setFavicon(string $favicon) : self return $this; } /** - * サービス名(Service name) + * サービス名(service name) * * @return string */ @@ -102,7 +102,7 @@ public function getTitle() : string return $this->title; } /** - * サービス名(Service name) + * サービス名(service name) * * @param string $title * @@ -115,7 +115,7 @@ public function setTitle(string $title) : self return $this; } /** - * 利用規約URL(Terms of use URL) + * 利用規約URL(terms of service URL) * * @return string */ @@ -124,7 +124,7 @@ public function getTermsOfServiceUrl() : string return $this->termsOfServiceUrl; } /** - * 利用規約URL(Terms of use URL) + * 利用規約URL(terms of service URL) * * @param string $termsOfServiceUrl * @@ -137,7 +137,7 @@ public function setTermsOfServiceUrl(string $termsOfServiceUrl) : self return $this; } /** - * プライバシーポリシーURL(Privacy Policy URL) + * プライバシーポリシーURL(privacy policy URL) * * @return string */ @@ -146,7 +146,7 @@ public function getPrivacyPolicyUrl() : string return $this->privacyPolicyUrl; } /** - * プライバシーポリシーURL(Privacy Policy URL) + * プライバシーポリシーURL(privacy policy URL) * * @param string $privacyPolicyUrl * diff --git a/generated/Auth/Model/CustomizePageSettingsProps.php b/generated/Auth/Model/CustomizePageSettingsProps.php index 35a6bd2..6bbb72d 100644 --- a/generated/Auth/Model/CustomizePageSettingsProps.php +++ b/generated/Auth/Model/CustomizePageSettingsProps.php @@ -13,19 +13,19 @@ public function isInitialized($property) : bool return array_key_exists($property, $this->initialized); } /** - * サービス名(Service name) + * サービス名(service name) * * @var string */ protected $title; /** - * 利用規約URL(Terms of use URL) + * 利用規約URL(terms of service URL) * * @var string */ protected $termsOfServiceUrl; /** - * プライバシーポリシーURL(Privacy Policy URL) + * プライバシーポリシーURL(privacy policy URL) * * @var string */ @@ -37,7 +37,7 @@ public function isInitialized($property) : bool */ protected $googleTagManagerContainerId; /** - * サービス名(Service name) + * サービス名(service name) * * @return string */ @@ -46,7 +46,7 @@ public function getTitle() : string return $this->title; } /** - * サービス名(Service name) + * サービス名(service name) * * @param string $title * @@ -59,7 +59,7 @@ public function setTitle(string $title) : self return $this; } /** - * 利用規約URL(Terms of use URL) + * 利用規約URL(terms of service URL) * * @return string */ @@ -68,7 +68,7 @@ public function getTermsOfServiceUrl() : string return $this->termsOfServiceUrl; } /** - * 利用規約URL(Terms of use URL) + * 利用規約URL(terms of service URL) * * @param string $termsOfServiceUrl * @@ -81,7 +81,7 @@ public function setTermsOfServiceUrl(string $termsOfServiceUrl) : self return $this; } /** - * プライバシーポリシーURL(Privacy Policy URL) + * プライバシーポリシーURL(privacy policy URL) * * @return string */ @@ -90,7 +90,7 @@ public function getPrivacyPolicyUrl() : string return $this->privacyPolicyUrl; } /** - * プライバシーポリシーURL(Privacy Policy URL) + * プライバシーポリシーURL(privacy policy URL) * * @param string $privacyPolicyUrl * diff --git a/generated/Auth/Model/DeviceConfiguration.php b/generated/Auth/Model/DeviceConfiguration.php index f5130b9..5a137e3 100644 --- a/generated/Auth/Model/DeviceConfiguration.php +++ b/generated/Auth/Model/DeviceConfiguration.php @@ -14,7 +14,7 @@ public function isInitialized($property) : bool } /** * always: 常に記憶する(always remember) - userOptIn: ユーザーオプトイン(User opt-in) + userOptIn: ユーザーオプトイン(user opt-in) no: (don't save) * @@ -23,7 +23,7 @@ public function isInitialized($property) : bool protected $deviceRemembering; /** * always: 常に記憶する(always remember) - userOptIn: ユーザーオプトイン(User opt-in) + userOptIn: ユーザーオプトイン(user opt-in) no: (don't save) * @@ -35,7 +35,7 @@ public function getDeviceRemembering() : string } /** * always: 常に記憶する(always remember) - userOptIn: ユーザーオプトイン(User opt-in) + userOptIn: ユーザーオプトイン(user opt-in) no: (don't save) * diff --git a/generated/Auth/Model/DnsRecord.php b/generated/Auth/Model/DnsRecord.php index 7c3a26d..43cb8f7 100644 --- a/generated/Auth/Model/DnsRecord.php +++ b/generated/Auth/Model/DnsRecord.php @@ -13,25 +13,25 @@ public function isInitialized($property) : bool return array_key_exists($property, $this->initialized); } /** - * CNAMEリソースレコード(CNAME resource record) + * CNAMEリソースレコード(CNAME Resource Record) * * @var string */ protected $type; /** - * レコード名(record name) + * レコード名(Record Name) * * @var string */ protected $name; /** - * 値(value) + * 値(Value) * * @var string */ protected $value; /** - * CNAMEリソースレコード(CNAME resource record) + * CNAMEリソースレコード(CNAME Resource Record) * * @return string */ @@ -40,7 +40,7 @@ public function getType() : string return $this->type; } /** - * CNAMEリソースレコード(CNAME resource record) + * CNAMEリソースレコード(CNAME Resource Record) * * @param string $type * @@ -53,7 +53,7 @@ public function setType(string $type) : self return $this; } /** - * レコード名(record name) + * レコード名(Record Name) * * @return string */ @@ -62,7 +62,7 @@ public function getName() : string return $this->name; } /** - * レコード名(record name) + * レコード名(Record Name) * * @param string $name * @@ -75,7 +75,7 @@ public function setName(string $name) : self return $this; } /** - * 値(value) + * 値(Value) * * @return string */ @@ -84,7 +84,7 @@ public function getValue() : string return $this->value; } /** - * 値(value) + * 値(Value) * * @param string $value * diff --git a/generated/Auth/Model/Env.php b/generated/Auth/Model/Env.php index bcecfae..3215ff1 100644 --- a/generated/Auth/Model/Env.php +++ b/generated/Auth/Model/Env.php @@ -19,7 +19,7 @@ public function isInitialized($property) : bool */ protected $id; /** - * 環境名(Env name) + * 環境名(env name) * * @var string */ @@ -47,7 +47,7 @@ public function setId(int $id) : self return $this; } /** - * 環境名(Env name) + * 環境名(env name) * * @return string */ @@ -56,7 +56,7 @@ public function getName() : string return $this->name; } /** - * 環境名(Env name) + * 環境名(env name) * * @param string $name * diff --git a/generated/Auth/Model/MfaConfiguration.php b/generated/Auth/Model/MfaConfiguration.php index 14034e7..461e405 100644 --- a/generated/Auth/Model/MfaConfiguration.php +++ b/generated/Auth/Model/MfaConfiguration.php @@ -13,8 +13,8 @@ public function isInitialized($property) : bool return array_key_exists($property, $this->initialized); } /** - * on: 全ユーザーがログイン時に適用(Apply when all users log in) - optional: MFA要素が有効になっている個別ユーザーに適用(Applies to individual users with MFA factor enabled) + * on: 全ユーザーがログイン時に適用(apply when all users log in) + optional: MFA要素が有効になっている個別ユーザーに適用(apply to individual users with MFA factor enabled) ※ パラメータは現在optionalで固定となります。(The parameter is currently optional and fixed.) * @@ -22,8 +22,8 @@ public function isInitialized($property) : bool */ protected $mfaConfiguration; /** - * on: 全ユーザーがログイン時に適用(Apply when all users log in) - optional: MFA要素が有効になっている個別ユーザーに適用(Applies to individual users with MFA factor enabled) + * on: 全ユーザーがログイン時に適用(apply when all users log in) + optional: MFA要素が有効になっている個別ユーザーに適用(apply to individual users with MFA factor enabled) ※ パラメータは現在optionalで固定となります。(The parameter is currently optional and fixed.) * @@ -34,8 +34,8 @@ public function getMfaConfiguration() : string return $this->mfaConfiguration; } /** - * on: 全ユーザーがログイン時に適用(Apply when all users log in) - optional: MFA要素が有効になっている個別ユーザーに適用(Applies to individual users with MFA factor enabled) + * on: 全ユーザーがログイン時に適用(apply when all users log in) + optional: MFA要素が有効になっている個別ユーザーに適用(apply to individual users with MFA factor enabled) ※ パラメータは現在optionalで固定となります。(The parameter is currently optional and fixed.) * diff --git a/generated/Auth/Model/MfaPreference.php b/generated/Auth/Model/MfaPreference.php index d6e5093..2e3172e 100644 --- a/generated/Auth/Model/MfaPreference.php +++ b/generated/Auth/Model/MfaPreference.php @@ -13,7 +13,7 @@ public function isInitialized($property) : bool return array_key_exists($property, $this->initialized); } /** - * MFAを有効にするか否か(Whether to enable MFA) + * MFAを有効にするか否か(enable MFA) * * @var bool */ @@ -25,7 +25,7 @@ public function isInitialized($property) : bool */ protected $method; /** - * MFAを有効にするか否か(Whether to enable MFA) + * MFAを有効にするか否か(enable MFA) * * @return bool */ @@ -34,7 +34,7 @@ public function getEnabled() : bool return $this->enabled; } /** - * MFAを有効にするか否か(Whether to enable MFA) + * MFAを有効にするか否か(enable MFA) * * @param bool $enabled * diff --git a/generated/Auth/Model/PasswordPolicy.php b/generated/Auth/Model/PasswordPolicy.php index c1b7407..459a649 100644 --- a/generated/Auth/Model/PasswordPolicy.php +++ b/generated/Auth/Model/PasswordPolicy.php @@ -19,31 +19,31 @@ public function isInitialized($property) : bool */ protected $minimumLength; /** - * 一文字以上の小文字を含むが設定されているか(Contains one or more lowercase characters is set) + * 一文字以上の小文字を含むが設定されているか(contains one or more lowercase characters) * * @var bool */ protected $isRequireLowercase; /** - * 一文字以上の数字を含むが設定されているか(Contains one or more numeric characters is set) + * 一文字以上の数字を含むが設定されているか(contains one or more numeric characters) * * @var bool */ protected $isRequireNumbers; /** - * 一文字以上の特殊文字を含むが設定されているか(Contains one or more special characters is set) + * 一文字以上の特殊文字を含むが設定されているか(contains one or more special characters) * * @var bool */ protected $isRequireSymbols; /** - * 一文字以上の大文字を含むが設定されているか(Contains one or more uppercase letters is set) + * 一文字以上の大文字を含むが設定されているか(contains one or more uppercase letters) * * @var bool */ protected $isRequireUppercase; /** - * 仮パスワードの有効期限(Temporary password expiration date) + * 仮パスワードの有効期限(temporary password expiration date) * * @var int */ @@ -71,7 +71,7 @@ public function setMinimumLength(int $minimumLength) : self return $this; } /** - * 一文字以上の小文字を含むが設定されているか(Contains one or more lowercase characters is set) + * 一文字以上の小文字を含むが設定されているか(contains one or more lowercase characters) * * @return bool */ @@ -80,7 +80,7 @@ public function getIsRequireLowercase() : bool return $this->isRequireLowercase; } /** - * 一文字以上の小文字を含むが設定されているか(Contains one or more lowercase characters is set) + * 一文字以上の小文字を含むが設定されているか(contains one or more lowercase characters) * * @param bool $isRequireLowercase * @@ -93,7 +93,7 @@ public function setIsRequireLowercase(bool $isRequireLowercase) : self return $this; } /** - * 一文字以上の数字を含むが設定されているか(Contains one or more numeric characters is set) + * 一文字以上の数字を含むが設定されているか(contains one or more numeric characters) * * @return bool */ @@ -102,7 +102,7 @@ public function getIsRequireNumbers() : bool return $this->isRequireNumbers; } /** - * 一文字以上の数字を含むが設定されているか(Contains one or more numeric characters is set) + * 一文字以上の数字を含むが設定されているか(contains one or more numeric characters) * * @param bool $isRequireNumbers * @@ -115,7 +115,7 @@ public function setIsRequireNumbers(bool $isRequireNumbers) : self return $this; } /** - * 一文字以上の特殊文字を含むが設定されているか(Contains one or more special characters is set) + * 一文字以上の特殊文字を含むが設定されているか(contains one or more special characters) * * @return bool */ @@ -124,7 +124,7 @@ public function getIsRequireSymbols() : bool return $this->isRequireSymbols; } /** - * 一文字以上の特殊文字を含むが設定されているか(Contains one or more special characters is set) + * 一文字以上の特殊文字を含むが設定されているか(contains one or more special characters) * * @param bool $isRequireSymbols * @@ -137,7 +137,7 @@ public function setIsRequireSymbols(bool $isRequireSymbols) : self return $this; } /** - * 一文字以上の大文字を含むが設定されているか(Contains one or more uppercase letters is set) + * 一文字以上の大文字を含むが設定されているか(contains one or more uppercase letters) * * @return bool */ @@ -146,7 +146,7 @@ public function getIsRequireUppercase() : bool return $this->isRequireUppercase; } /** - * 一文字以上の大文字を含むが設定されているか(Contains one or more uppercase letters is set) + * 一文字以上の大文字を含むが設定されているか(contains one or more uppercase letters) * * @param bool $isRequireUppercase * @@ -159,7 +159,7 @@ public function setIsRequireUppercase(bool $isRequireUppercase) : self return $this; } /** - * 仮パスワードの有効期限(Temporary password expiration date) + * 仮パスワードの有効期限(temporary password expiration date) * * @return int */ @@ -168,7 +168,7 @@ public function getTemporaryPasswordValidityDays() : int return $this->temporaryPasswordValidityDays; } /** - * 仮パスワードの有効期限(Temporary password expiration date) + * 仮パスワードの有効期限(temporary password expiration date) * * @param int $temporaryPasswordValidityDays * diff --git a/generated/Auth/Model/RecaptchaProps.php b/generated/Auth/Model/RecaptchaProps.php index 9e64e79..29e285b 100644 --- a/generated/Auth/Model/RecaptchaProps.php +++ b/generated/Auth/Model/RecaptchaProps.php @@ -13,19 +13,19 @@ public function isInitialized($property) : bool return array_key_exists($property, $this->initialized); } /** - * サイトキー(Site key) + * サイトキー(site key) * * @var string */ protected $siteKey; /** - * シークレットキー(Secret key) + * シークレットキー(secret key) * * @var string */ protected $secretKey; /** - * サイトキー(Site key) + * サイトキー(site key) * * @return string */ @@ -34,7 +34,7 @@ public function getSiteKey() : string return $this->siteKey; } /** - * サイトキー(Site key) + * サイトキー(site key) * * @param string $siteKey * @@ -47,7 +47,7 @@ public function setSiteKey(string $siteKey) : self return $this; } /** - * シークレットキー(Secret key) + * シークレットキー(secret key) * * @return string */ @@ -56,7 +56,7 @@ public function getSecretKey() : string return $this->secretKey; } /** - * シークレットキー(Secret key) + * シークレットキー(secret key) * * @param string $secretKey * diff --git a/generated/Auth/Model/SaasUser.php b/generated/Auth/Model/SaasUser.php index 493a5fa..bb1d1a4 100644 --- a/generated/Auth/Model/SaasUser.php +++ b/generated/Auth/Model/SaasUser.php @@ -19,7 +19,7 @@ public function isInitialized($property) : bool */ protected $id; /** - * メールアドレス(e-mail) + * メールアドレス(E-mail) * * @var string */ @@ -47,7 +47,7 @@ public function setId(string $id) : self return $this; } /** - * メールアドレス(e-mail) + * メールアドレス(E-mail) * * @return string */ @@ -56,7 +56,7 @@ public function getEmail() : string return $this->email; } /** - * メールアドレス(e-mail) + * メールアドレス(E-mail) * * @param string $email * diff --git a/generated/Auth/Model/SignInSettings.php b/generated/Auth/Model/SignInSettings.php index 624bf0f..9d72e35 100644 --- a/generated/Auth/Model/SignInSettings.php +++ b/generated/Auth/Model/SignInSettings.php @@ -19,14 +19,14 @@ public function isInitialized($property) : bool */ protected $passwordPolicy; /** - * 信頼済みデバイスの記憶の設定(Settings for remembering trusted devices) + * 信頼済みデバイスの記憶の設定(settings for remembering trusted devices) * * @var DeviceConfiguration */ protected $deviceConfiguration; /** * MFAデバイス認証設定(MFA device authentication settings) - ※ 未提供の機能のため、変更・保存はできません(Unable to change/save due to unprovided function) + ※ 未提供の機能のため、変更・保存はできません(This function is not yet provided, so it cannot be changed or saved.) * * @var MfaConfiguration @@ -34,22 +34,22 @@ public function isInitialized($property) : bool protected $mfaConfiguration; /** * reCAPTCHA認証設定(reCAPTCHA authentication settings) - ※ 未提供の機能のため、変更・保存はできません(Unable to change/save due to unprovided function) + ※ 未提供の機能のため、変更・保存はできません(This function is not yet provided, so it cannot be changed or saved.) * * @var RecaptchaProps */ protected $recaptchaProps; /** - * アカウント認証設定(Account authentication settings) - ※ 未提供の機能のため、変更・保存はできません(Unable to change/save due to unprovided function) + * アカウント認証設定(account authentication settings) + ※ 未提供の機能のため、変更・保存はできません(This function is not yet provided, so it cannot be changed or saved.) * * @var AccountVerification */ protected $accountVerification; /** - * セルフサインアップを許可設定(Self sign-up permission setting) + * セルフサインアップを許可設定(self sign-up permission) * * @var SelfRegist */ @@ -77,7 +77,7 @@ public function setPasswordPolicy(PasswordPolicy $passwordPolicy) : self return $this; } /** - * 信頼済みデバイスの記憶の設定(Settings for remembering trusted devices) + * 信頼済みデバイスの記憶の設定(settings for remembering trusted devices) * * @return DeviceConfiguration */ @@ -86,7 +86,7 @@ public function getDeviceConfiguration() : DeviceConfiguration return $this->deviceConfiguration; } /** - * 信頼済みデバイスの記憶の設定(Settings for remembering trusted devices) + * 信頼済みデバイスの記憶の設定(settings for remembering trusted devices) * * @param DeviceConfiguration $deviceConfiguration * @@ -100,7 +100,7 @@ public function setDeviceConfiguration(DeviceConfiguration $deviceConfiguration) } /** * MFAデバイス認証設定(MFA device authentication settings) - ※ 未提供の機能のため、変更・保存はできません(Unable to change/save due to unprovided function) + ※ 未提供の機能のため、変更・保存はできません(This function is not yet provided, so it cannot be changed or saved.) * * @return MfaConfiguration @@ -111,7 +111,7 @@ public function getMfaConfiguration() : MfaConfiguration } /** * MFAデバイス認証設定(MFA device authentication settings) - ※ 未提供の機能のため、変更・保存はできません(Unable to change/save due to unprovided function) + ※ 未提供の機能のため、変更・保存はできません(This function is not yet provided, so it cannot be changed or saved.) * * @param MfaConfiguration $mfaConfiguration @@ -126,7 +126,7 @@ public function setMfaConfiguration(MfaConfiguration $mfaConfiguration) : self } /** * reCAPTCHA認証設定(reCAPTCHA authentication settings) - ※ 未提供の機能のため、変更・保存はできません(Unable to change/save due to unprovided function) + ※ 未提供の機能のため、変更・保存はできません(This function is not yet provided, so it cannot be changed or saved.) * * @return RecaptchaProps @@ -137,7 +137,7 @@ public function getRecaptchaProps() : RecaptchaProps } /** * reCAPTCHA認証設定(reCAPTCHA authentication settings) - ※ 未提供の機能のため、変更・保存はできません(Unable to change/save due to unprovided function) + ※ 未提供の機能のため、変更・保存はできません(This function is not yet provided, so it cannot be changed or saved.) * * @param RecaptchaProps $recaptchaProps @@ -151,8 +151,8 @@ public function setRecaptchaProps(RecaptchaProps $recaptchaProps) : self return $this; } /** - * アカウント認証設定(Account authentication settings) - ※ 未提供の機能のため、変更・保存はできません(Unable to change/save due to unprovided function) + * アカウント認証設定(account authentication settings) + ※ 未提供の機能のため、変更・保存はできません(This function is not yet provided, so it cannot be changed or saved.) * * @return AccountVerification @@ -162,8 +162,8 @@ public function getAccountVerification() : AccountVerification return $this->accountVerification; } /** - * アカウント認証設定(Account authentication settings) - ※ 未提供の機能のため、変更・保存はできません(Unable to change/save due to unprovided function) + * アカウント認証設定(account authentication settings) + ※ 未提供の機能のため、変更・保存はできません(This function is not yet provided, so it cannot be changed or saved.) * * @param AccountVerification $accountVerification @@ -177,7 +177,7 @@ public function setAccountVerification(AccountVerification $accountVerification) return $this; } /** - * セルフサインアップを許可設定(Self sign-up permission setting) + * セルフサインアップを許可設定(self sign-up permission) * * @return SelfRegist */ @@ -186,7 +186,7 @@ public function getSelfRegist() : SelfRegist return $this->selfRegist; } /** - * セルフサインアップを許可設定(Self sign-up permission setting) + * セルフサインアップを許可設定(self sign-up permission) * * @param SelfRegist $selfRegist * diff --git a/generated/Auth/Model/Tenant.php b/generated/Auth/Model/Tenant.php index 6cb18dd..d60ea8d 100644 --- a/generated/Auth/Model/Tenant.php +++ b/generated/Auth/Model/Tenant.php @@ -25,13 +25,13 @@ public function isInitialized($property) : bool */ protected $planId; /** - * テナント名(Tenant name) + * テナント名(tenant name) * * @var string */ protected $name; /** - * 属性情報(Attribute info) + * 属性情報(attribute info) * * @var mixed[] */ @@ -44,14 +44,14 @@ public function isInitialized($property) : bool protected $nextPlanId; /** * 次回料金プラン開始日時(stripe連携時、当月月初の0時(UTC)を指定すると当月月初開始のサブスクリプションを作成できます。ex. 2023年1月の場合は、1672531200 ) - (Next billing plan start time (When working with stripe, you can create a subscription that starts at the beginning of the current month by specifying 00:00 (UTC) at the beginning of the current month. Ex. 1672531200 for January 2023.)) + (Next billing plan start time (When using stripe, you can create a subscription that starts at the beginning of the current month by specifying 00:00 (UTC) at the beginning of the current month. Ex. 1672531200 for January 2023.)) * * @var int */ protected $usingNextPlanFrom; /** - * 事務管理部門スタッフメールアドレス(Administrative staff email address) + * 事務管理部門スタッフメールアドレス(administrative staff email address) * * @var string */ @@ -107,7 +107,7 @@ public function setPlanId(string $planId) : self return $this; } /** - * テナント名(Tenant name) + * テナント名(tenant name) * * @return string */ @@ -116,7 +116,7 @@ public function getName() : string return $this->name; } /** - * テナント名(Tenant name) + * テナント名(tenant name) * * @param string $name * @@ -129,7 +129,7 @@ public function setName(string $name) : self return $this; } /** - * 属性情報(Attribute info) + * 属性情報(attribute info) * * @return mixed[] */ @@ -138,7 +138,7 @@ public function getAttributes() : iterable return $this->attributes; } /** - * 属性情報(Attribute info) + * 属性情報(attribute info) * * @param mixed[] $attributes * @@ -174,7 +174,7 @@ public function setNextPlanId(string $nextPlanId) : self } /** * 次回料金プラン開始日時(stripe連携時、当月月初の0時(UTC)を指定すると当月月初開始のサブスクリプションを作成できます。ex. 2023年1月の場合は、1672531200 ) - (Next billing plan start time (When working with stripe, you can create a subscription that starts at the beginning of the current month by specifying 00:00 (UTC) at the beginning of the current month. Ex. 1672531200 for January 2023.)) + (Next billing plan start time (When using stripe, you can create a subscription that starts at the beginning of the current month by specifying 00:00 (UTC) at the beginning of the current month. Ex. 1672531200 for January 2023.)) * * @return int @@ -185,7 +185,7 @@ public function getUsingNextPlanFrom() : int } /** * 次回料金プラン開始日時(stripe連携時、当月月初の0時(UTC)を指定すると当月月初開始のサブスクリプションを作成できます。ex. 2023年1月の場合は、1672531200 ) - (Next billing plan start time (When working with stripe, you can create a subscription that starts at the beginning of the current month by specifying 00:00 (UTC) at the beginning of the current month. Ex. 1672531200 for January 2023.)) + (Next billing plan start time (When using stripe, you can create a subscription that starts at the beginning of the current month by specifying 00:00 (UTC) at the beginning of the current month. Ex. 1672531200 for January 2023.)) * * @param int $usingNextPlanFrom @@ -199,7 +199,7 @@ public function setUsingNextPlanFrom(int $usingNextPlanFrom) : self return $this; } /** - * 事務管理部門スタッフメールアドレス(Administrative staff email address) + * 事務管理部門スタッフメールアドレス(administrative staff email address) * * @return string */ @@ -208,7 +208,7 @@ public function getBackOfficeStaffEmail() : string return $this->backOfficeStaffEmail; } /** - * 事務管理部門スタッフメールアドレス(Administrative staff email address) + * 事務管理部門スタッフメールアドレス(administrative staff email address) * * @param string $backOfficeStaffEmail * diff --git a/generated/Auth/Model/TenantAttributes.php b/generated/Auth/Model/TenantAttributes.php index c97bafe..5eceb44 100644 --- a/generated/Auth/Model/TenantAttributes.php +++ b/generated/Auth/Model/TenantAttributes.php @@ -13,13 +13,13 @@ public function isInitialized($property) : bool return array_key_exists($property, $this->initialized); } /** - * テナント属性定義(Tenant attribute definition) + * テナント属性定義(Tenant Attribute Definition) * * @var Attribute[] */ protected $tenantAttributes; /** - * テナント属性定義(Tenant attribute definition) + * テナント属性定義(Tenant Attribute Definition) * * @return Attribute[] */ @@ -28,7 +28,7 @@ public function getTenantAttributes() : array return $this->tenantAttributes; } /** - * テナント属性定義(Tenant attribute definition) + * テナント属性定義(Tenant Attribute Definition) * * @param Attribute[] $tenantAttributes * diff --git a/generated/Auth/Model/TenantProps.php b/generated/Auth/Model/TenantProps.php index 42323a3..708220a 100644 --- a/generated/Auth/Model/TenantProps.php +++ b/generated/Auth/Model/TenantProps.php @@ -13,13 +13,13 @@ public function isInitialized($property) : bool return array_key_exists($property, $this->initialized); } /** - * テナント名(Tenant name) + * テナント名(tenant name) * * @var string */ protected $name; /** - * 属性情報(Attribute info) + * 属性情報(attribute info) * * @var mixed[] */ @@ -32,20 +32,20 @@ public function isInitialized($property) : bool protected $nextPlanId; /** * 次回料金プラン開始日時(stripe連携時、当月月初の0時(UTC)を指定すると当月月初開始のサブスクリプションを作成できます。ex. 2023年1月の場合は、1672531200 ) - (Next billing plan start time (When working with stripe, you can create a subscription that starts at the beginning of the current month by specifying 00:00 (UTC) at the beginning of the current month. Ex. 1672531200 for January 2023.)) + (Next billing plan start time (When using stripe, you can create a subscription that starts at the beginning of the current month by specifying 00:00 (UTC) at the beginning of the current month. Ex. 1672531200 for January 2023.)) * * @var int */ protected $usingNextPlanFrom; /** - * 事務管理部門スタッフメールアドレス(Administrative staff email address) + * 事務管理部門スタッフメールアドレス(administrative staff email address) * * @var string */ protected $backOfficeStaffEmail; /** - * テナント名(Tenant name) + * テナント名(tenant name) * * @return string */ @@ -54,7 +54,7 @@ public function getName() : string return $this->name; } /** - * テナント名(Tenant name) + * テナント名(tenant name) * * @param string $name * @@ -67,7 +67,7 @@ public function setName(string $name) : self return $this; } /** - * 属性情報(Attribute info) + * 属性情報(attribute info) * * @return mixed[] */ @@ -76,7 +76,7 @@ public function getAttributes() : iterable return $this->attributes; } /** - * 属性情報(Attribute info) + * 属性情報(attribute info) * * @param mixed[] $attributes * @@ -112,7 +112,7 @@ public function setNextPlanId(string $nextPlanId) : self } /** * 次回料金プラン開始日時(stripe連携時、当月月初の0時(UTC)を指定すると当月月初開始のサブスクリプションを作成できます。ex. 2023年1月の場合は、1672531200 ) - (Next billing plan start time (When working with stripe, you can create a subscription that starts at the beginning of the current month by specifying 00:00 (UTC) at the beginning of the current month. Ex. 1672531200 for January 2023.)) + (Next billing plan start time (When using stripe, you can create a subscription that starts at the beginning of the current month by specifying 00:00 (UTC) at the beginning of the current month. Ex. 1672531200 for January 2023.)) * * @return int @@ -123,7 +123,7 @@ public function getUsingNextPlanFrom() : int } /** * 次回料金プラン開始日時(stripe連携時、当月月初の0時(UTC)を指定すると当月月初開始のサブスクリプションを作成できます。ex. 2023年1月の場合は、1672531200 ) - (Next billing plan start time (When working with stripe, you can create a subscription that starts at the beginning of the current month by specifying 00:00 (UTC) at the beginning of the current month. Ex. 1672531200 for January 2023.)) + (Next billing plan start time (When using stripe, you can create a subscription that starts at the beginning of the current month by specifying 00:00 (UTC) at the beginning of the current month. Ex. 1672531200 for January 2023.)) * * @param int $usingNextPlanFrom @@ -137,7 +137,7 @@ public function setUsingNextPlanFrom(int $usingNextPlanFrom) : self return $this; } /** - * 事務管理部門スタッフメールアドレス(Administrative staff email address) + * 事務管理部門スタッフメールアドレス(administrative staff email address) * * @return string */ @@ -146,7 +146,7 @@ public function getBackOfficeStaffEmail() : string return $this->backOfficeStaffEmail; } /** - * 事務管理部門スタッフメールアドレス(Administrative staff email address) + * 事務管理部門スタッフメールアドレス(administrative staff email address) * * @param string $backOfficeStaffEmail * diff --git a/generated/Auth/Model/UpdateBasicInfoParam.php b/generated/Auth/Model/UpdateBasicInfoParam.php index cbf2945..9cea17d 100644 --- a/generated/Auth/Model/UpdateBasicInfoParam.php +++ b/generated/Auth/Model/UpdateBasicInfoParam.php @@ -13,19 +13,19 @@ public function isInitialized($property) : bool return array_key_exists($property, $this->initialized); } /** - * ドメイン名(Domain name) + * ドメイン名(Domain Name) * * @var string */ protected $domainName; /** - * 認証メールの送信元メールアドレス(Sender email address of authentication email) + * 認証メールの送信元メールアドレス(Sender email of authentication email) * * @var string */ protected $fromEmailAddress; /** - * ドメイン名(Domain name) + * ドメイン名(Domain Name) * * @return string */ @@ -34,7 +34,7 @@ public function getDomainName() : string return $this->domainName; } /** - * ドメイン名(Domain name) + * ドメイン名(Domain Name) * * @param string $domainName * @@ -47,7 +47,7 @@ public function setDomainName(string $domainName) : self return $this; } /** - * 認証メールの送信元メールアドレス(Sender email address of authentication email) + * 認証メールの送信元メールアドレス(Sender email of authentication email) * * @return string */ @@ -56,7 +56,7 @@ public function getFromEmailAddress() : string return $this->fromEmailAddress; } /** - * 認証メールの送信元メールアドレス(Sender email address of authentication email) + * 認証メールの送信元メールアドレス(Sender email of authentication email) * * @param string $fromEmailAddress * diff --git a/generated/Auth/Model/UpdateCustomizePageSettingsParam.php b/generated/Auth/Model/UpdateCustomizePageSettingsParam.php index c13926a..b1b9ef9 100644 --- a/generated/Auth/Model/UpdateCustomizePageSettingsParam.php +++ b/generated/Auth/Model/UpdateCustomizePageSettingsParam.php @@ -13,7 +13,7 @@ public function isInitialized($property) : bool return array_key_exists($property, $this->initialized); } /** - * サービスアイコン(Service Icon) + * サービスアイコン(service icon) * * @var string */ @@ -25,19 +25,19 @@ public function isInitialized($property) : bool */ protected $favicon; /** - * サービス名(Service name) + * サービス名(service name) * * @var string */ protected $title; /** - * 利用規約URL(Terms of use URL) + * 利用規約URL(terms of service URL) * * @var string */ protected $termsOfServiceUrl; /** - * プライバシーポリシーURL(Privacy Policy URL) + * プライバシーポリシーURL(privacy policy URL) * * @var string */ @@ -49,7 +49,7 @@ public function isInitialized($property) : bool */ protected $googleTagManagerContainerId; /** - * サービスアイコン(Service Icon) + * サービスアイコン(service icon) * * @return string */ @@ -58,7 +58,7 @@ public function getIcon() : string return $this->icon; } /** - * サービスアイコン(Service Icon) + * サービスアイコン(service icon) * * @param string $icon * @@ -93,7 +93,7 @@ public function setFavicon(string $favicon) : self return $this; } /** - * サービス名(Service name) + * サービス名(service name) * * @return string */ @@ -102,7 +102,7 @@ public function getTitle() : string return $this->title; } /** - * サービス名(Service name) + * サービス名(service name) * * @param string $title * @@ -115,7 +115,7 @@ public function setTitle(string $title) : self return $this; } /** - * 利用規約URL(Terms of use URL) + * 利用規約URL(terms of service URL) * * @return string */ @@ -124,7 +124,7 @@ public function getTermsOfServiceUrl() : string return $this->termsOfServiceUrl; } /** - * 利用規約URL(Terms of use URL) + * 利用規約URL(terms of service URL) * * @param string $termsOfServiceUrl * @@ -137,7 +137,7 @@ public function setTermsOfServiceUrl(string $termsOfServiceUrl) : self return $this; } /** - * プライバシーポリシーURL(Privacy Policy URL) + * プライバシーポリシーURL(privacy policy URL) * * @return string */ @@ -146,7 +146,7 @@ public function getPrivacyPolicyUrl() : string return $this->privacyPolicyUrl; } /** - * プライバシーポリシーURL(Privacy Policy URL) + * プライバシーポリシーURL(privacy policy URL) * * @param string $privacyPolicyUrl * diff --git a/generated/Auth/Model/UpdateEnvParam.php b/generated/Auth/Model/UpdateEnvParam.php index 50b358e..1c8de92 100644 --- a/generated/Auth/Model/UpdateEnvParam.php +++ b/generated/Auth/Model/UpdateEnvParam.php @@ -13,13 +13,13 @@ public function isInitialized($property) : bool return array_key_exists($property, $this->initialized); } /** - * 環境名(Env name) + * 環境名(env name) * * @var string */ protected $name; /** - * 環境名(Env name) + * 環境名(env name) * * @return string */ @@ -28,7 +28,7 @@ public function getName() : string return $this->name; } /** - * 環境名(Env name) + * 環境名(env name) * * @param string $name * diff --git a/generated/Auth/Model/UpdateSignInSettingsParam.php b/generated/Auth/Model/UpdateSignInSettingsParam.php index 676f821..d452ce4 100644 --- a/generated/Auth/Model/UpdateSignInSettingsParam.php +++ b/generated/Auth/Model/UpdateSignInSettingsParam.php @@ -19,14 +19,14 @@ public function isInitialized($property) : bool */ protected $passwordPolicy; /** - * 信頼済みデバイスの記憶の設定(Settings for remembering trusted devices) + * 信頼済みデバイスの記憶の設定(settings for remembering trusted devices) * * @var DeviceConfiguration */ protected $deviceConfiguration; /** * MFAデバイス認証設定(MFA device authentication settings) - ※ 未提供の機能のため、変更・保存はできません(Unable to change/save due to unprovided function) + ※ 未提供の機能のため、変更・保存はできません(This function is not yet provided, so it cannot be changed or saved.) * * @var MfaConfiguration @@ -34,22 +34,22 @@ public function isInitialized($property) : bool protected $mfaConfiguration; /** * reCAPTCHA認証設定(reCAPTCHA authentication settings) - ※ 未提供の機能のため、変更・保存はできません(Unable to change/save due to unprovided function) + ※ 未提供の機能のため、変更・保存はできません(This function is not yet provided, so it cannot be changed or saved.) * * @var RecaptchaProps */ protected $recaptchaProps; /** - * アカウント認証設定(Account authentication settings) - ※ 未提供の機能のため、変更・保存はできません(Unable to change/save due to unprovided function) + * アカウント認証設定(account authentication settings) + ※ 未提供の機能のため、変更・保存はできません(This function is not yet provided, so it cannot be changed or saved.) * * @var AccountVerification */ protected $accountVerification; /** - * セルフサインアップを許可設定(Self sign-up permission setting) + * セルフサインアップを許可設定(self sign-up permission) * * @var SelfRegist */ @@ -77,7 +77,7 @@ public function setPasswordPolicy(PasswordPolicy $passwordPolicy) : self return $this; } /** - * 信頼済みデバイスの記憶の設定(Settings for remembering trusted devices) + * 信頼済みデバイスの記憶の設定(settings for remembering trusted devices) * * @return DeviceConfiguration */ @@ -86,7 +86,7 @@ public function getDeviceConfiguration() : DeviceConfiguration return $this->deviceConfiguration; } /** - * 信頼済みデバイスの記憶の設定(Settings for remembering trusted devices) + * 信頼済みデバイスの記憶の設定(settings for remembering trusted devices) * * @param DeviceConfiguration $deviceConfiguration * @@ -100,7 +100,7 @@ public function setDeviceConfiguration(DeviceConfiguration $deviceConfiguration) } /** * MFAデバイス認証設定(MFA device authentication settings) - ※ 未提供の機能のため、変更・保存はできません(Unable to change/save due to unprovided function) + ※ 未提供の機能のため、変更・保存はできません(This function is not yet provided, so it cannot be changed or saved.) * * @return MfaConfiguration @@ -111,7 +111,7 @@ public function getMfaConfiguration() : MfaConfiguration } /** * MFAデバイス認証設定(MFA device authentication settings) - ※ 未提供の機能のため、変更・保存はできません(Unable to change/save due to unprovided function) + ※ 未提供の機能のため、変更・保存はできません(This function is not yet provided, so it cannot be changed or saved.) * * @param MfaConfiguration $mfaConfiguration @@ -126,7 +126,7 @@ public function setMfaConfiguration(MfaConfiguration $mfaConfiguration) : self } /** * reCAPTCHA認証設定(reCAPTCHA authentication settings) - ※ 未提供の機能のため、変更・保存はできません(Unable to change/save due to unprovided function) + ※ 未提供の機能のため、変更・保存はできません(This function is not yet provided, so it cannot be changed or saved.) * * @return RecaptchaProps @@ -137,7 +137,7 @@ public function getRecaptchaProps() : RecaptchaProps } /** * reCAPTCHA認証設定(reCAPTCHA authentication settings) - ※ 未提供の機能のため、変更・保存はできません(Unable to change/save due to unprovided function) + ※ 未提供の機能のため、変更・保存はできません(This function is not yet provided, so it cannot be changed or saved.) * * @param RecaptchaProps $recaptchaProps @@ -151,8 +151,8 @@ public function setRecaptchaProps(RecaptchaProps $recaptchaProps) : self return $this; } /** - * アカウント認証設定(Account authentication settings) - ※ 未提供の機能のため、変更・保存はできません(Unable to change/save due to unprovided function) + * アカウント認証設定(account authentication settings) + ※ 未提供の機能のため、変更・保存はできません(This function is not yet provided, so it cannot be changed or saved.) * * @return AccountVerification @@ -162,8 +162,8 @@ public function getAccountVerification() : AccountVerification return $this->accountVerification; } /** - * アカウント認証設定(Account authentication settings) - ※ 未提供の機能のため、変更・保存はできません(Unable to change/save due to unprovided function) + * アカウント認証設定(account authentication settings) + ※ 未提供の機能のため、変更・保存はできません(This function is not yet provided, so it cannot be changed or saved.) * * @param AccountVerification $accountVerification @@ -177,7 +177,7 @@ public function setAccountVerification(AccountVerification $accountVerification) return $this; } /** - * セルフサインアップを許可設定(Self sign-up permission setting) + * セルフサインアップを許可設定(self sign-up permission) * * @return SelfRegist */ @@ -186,7 +186,7 @@ public function getSelfRegist() : SelfRegist return $this->selfRegist; } /** - * セルフサインアップを許可設定(Self sign-up permission setting) + * セルフサインアップを許可設定(self sign-up permission) * * @param SelfRegist $selfRegist * diff --git a/generated/Auth/Model/UpdateTenantUserParam.php b/generated/Auth/Model/UpdateTenantUserParam.php index 71ad911..e1eab2c 100644 --- a/generated/Auth/Model/UpdateTenantUserParam.php +++ b/generated/Auth/Model/UpdateTenantUserParam.php @@ -15,7 +15,7 @@ public function isInitialized($property) : bool /** * 属性情報(SaaS 開発コンソールでテナント属性定義を行い設定された情報を取得します) - Attribute information (Obtain the information set by defining tenant attributes in the SaaS development console) + Attribute information (Get information set by defining tenant attributes in the SaaS development console) * * @var mixed[] @@ -24,7 +24,7 @@ public function isInitialized($property) : bool /** * 属性情報(SaaS 開発コンソールでテナント属性定義を行い設定された情報を取得します) - Attribute information (Obtain the information set by defining tenant attributes in the SaaS development console) + Attribute information (Get information set by defining tenant attributes in the SaaS development console) * * @return mixed[] @@ -36,7 +36,7 @@ public function getAttributes() : iterable /** * 属性情報(SaaS 開発コンソールでテナント属性定義を行い設定された情報を取得します) - Attribute information (Obtain the information set by defining tenant attributes in the SaaS development console) + Attribute information (Get information set by defining tenant attributes in the SaaS development console) * * @param mixed[] $attributes diff --git a/generated/Auth/Model/User.php b/generated/Auth/Model/User.php index c4ba886..dc56923 100644 --- a/generated/Auth/Model/User.php +++ b/generated/Auth/Model/User.php @@ -25,13 +25,13 @@ public function isInitialized($property) : bool */ protected $tenantId; /** - * テナント名(Tenant name) + * テナント名(Tenant Name) * * @var string */ protected $tenantName; /** - * メールアドレス(e-mail) + * メールアドレス(E-mail) * * @var string */ @@ -39,7 +39,7 @@ public function isInitialized($property) : bool /** * 属性情報(SaaS 開発コンソールでテナント属性定義を行い設定された情報を取得します) - Attribute information (Obtain the information set by defining tenant attributes in the SaaS development console) + Attribute information (Get information set by defining tenant attributes in the SaaS development console) * * @var mixed[] @@ -96,7 +96,7 @@ public function setTenantId(string $tenantId) : self return $this; } /** - * テナント名(Tenant name) + * テナント名(Tenant Name) * * @return string */ @@ -105,7 +105,7 @@ public function getTenantName() : string return $this->tenantName; } /** - * テナント名(Tenant name) + * テナント名(Tenant Name) * * @param string $tenantName * @@ -118,7 +118,7 @@ public function setTenantName(string $tenantName) : self return $this; } /** - * メールアドレス(e-mail) + * メールアドレス(E-mail) * * @return string */ @@ -127,7 +127,7 @@ public function getEmail() : string return $this->email; } /** - * メールアドレス(e-mail) + * メールアドレス(E-mail) * * @param string $email * @@ -142,7 +142,7 @@ public function setEmail(string $email) : self /** * 属性情報(SaaS 開発コンソールでテナント属性定義を行い設定された情報を取得します) - Attribute information (Obtain the information set by defining tenant attributes in the SaaS development console) + Attribute information (Get information set by defining tenant attributes in the SaaS development console) * * @return mixed[] @@ -154,7 +154,7 @@ public function getAttributes() : iterable /** * 属性情報(SaaS 開発コンソールでテナント属性定義を行い設定された情報を取得します) - Attribute information (Obtain the information set by defining tenant attributes in the SaaS development console) + Attribute information (Get information set by defining tenant attributes in the SaaS development console) * * @param mixed[] $attributes diff --git a/generated/Auth/Model/UserAvailableEnv.php b/generated/Auth/Model/UserAvailableEnv.php index 7591370..0e27d4e 100644 --- a/generated/Auth/Model/UserAvailableEnv.php +++ b/generated/Auth/Model/UserAvailableEnv.php @@ -19,13 +19,13 @@ public function isInitialized($property) : bool */ protected $id; /** - * 環境名(Env name) + * 環境名(env name) * * @var string */ protected $name; /** - * 役割(ロール)情報(Role info) + * 役割(ロール)情報(role info) * * @var Role[] */ @@ -53,7 +53,7 @@ public function setId(int $id) : self return $this; } /** - * 環境名(Env name) + * 環境名(env name) * * @return string */ @@ -62,7 +62,7 @@ public function getName() : string return $this->name; } /** - * 環境名(Env name) + * 環境名(env name) * * @param string $name * @@ -75,7 +75,7 @@ public function setName(string $name) : self return $this; } /** - * 役割(ロール)情報(Role info) + * 役割(ロール)情報(role info) * * @return Role[] */ @@ -84,7 +84,7 @@ public function getRoles() : array return $this->roles; } /** - * 役割(ロール)情報(Role info) + * 役割(ロール)情報(role info) * * @param Role[] $roles * diff --git a/generated/Auth/Model/UserAvailableTenant.php b/generated/Auth/Model/UserAvailableTenant.php index 4d28981..1690c63 100644 --- a/generated/Auth/Model/UserAvailableTenant.php +++ b/generated/Auth/Model/UserAvailableTenant.php @@ -19,7 +19,7 @@ public function isInitialized($property) : bool */ protected $id; /** - * テナント名(Tenant name) + * テナント名(tenant name) * * @var string */ @@ -31,19 +31,19 @@ public function isInitialized($property) : bool */ protected $completedSignUp; /** - * 環境情報、役割(ロール)情報(Environmental info, role info) + * 環境情報、役割(ロール)情報(environmental info, role info) * * @var UserAvailableEnv[] */ protected $envs; /** - * ユーザー追加属性(User Added Attribute) + * ユーザー追加属性(user additional attributes) * * @var mixed[] */ protected $userAttribute; /** - * バックオフィス担当者のメール(Back office contact email) + * バックオフィス担当者のメール(back office contact email) * * @var string */ @@ -77,7 +77,7 @@ public function setId(string $id) : self return $this; } /** - * テナント名(Tenant name) + * テナント名(tenant name) * * @return string */ @@ -86,7 +86,7 @@ public function getName() : string return $this->name; } /** - * テナント名(Tenant name) + * テナント名(tenant name) * * @param string $name * @@ -121,7 +121,7 @@ public function setCompletedSignUp(bool $completedSignUp) : self return $this; } /** - * 環境情報、役割(ロール)情報(Environmental info, role info) + * 環境情報、役割(ロール)情報(environmental info, role info) * * @return UserAvailableEnv[] */ @@ -130,7 +130,7 @@ public function getEnvs() : array return $this->envs; } /** - * 環境情報、役割(ロール)情報(Environmental info, role info) + * 環境情報、役割(ロール)情報(environmental info, role info) * * @param UserAvailableEnv[] $envs * @@ -143,7 +143,7 @@ public function setEnvs(array $envs) : self return $this; } /** - * ユーザー追加属性(User Added Attribute) + * ユーザー追加属性(user additional attributes) * * @return mixed[] */ @@ -152,7 +152,7 @@ public function getUserAttribute() : iterable return $this->userAttribute; } /** - * ユーザー追加属性(User Added Attribute) + * ユーザー追加属性(user additional attributes) * * @param mixed[] $userAttribute * @@ -165,7 +165,7 @@ public function setUserAttribute(iterable $userAttribute) : self return $this; } /** - * バックオフィス担当者のメール(Back office contact email) + * バックオフィス担当者のメール(back office contact email) * * @return string */ @@ -174,7 +174,7 @@ public function getBackOfficeStaffEmail() : string return $this->backOfficeStaffEmail; } /** - * バックオフィス担当者のメール(Back office contact email) + * バックオフィス担当者のメール(back office contact email) * * @param string $backOfficeStaffEmail * diff --git a/generated/Auth/Model/UserInfo.php b/generated/Auth/Model/UserInfo.php index 60ad3fb..d5cd775 100644 --- a/generated/Auth/Model/UserInfo.php +++ b/generated/Auth/Model/UserInfo.php @@ -19,13 +19,13 @@ public function isInitialized($property) : bool */ protected $id; /** - * メールアドレス(e-mail) + * メールアドレス(E-mail) * * @var string */ protected $email; /** - * テナント情報(Tenant info) + * テナント情報(Tenant Info) * * @var UserAvailableTenant[] */ @@ -53,7 +53,7 @@ public function setId(string $id) : self return $this; } /** - * メールアドレス(e-mail) + * メールアドレス(E-mail) * * @return string */ @@ -62,7 +62,7 @@ public function getEmail() : string return $this->email; } /** - * メールアドレス(e-mail) + * メールアドレス(E-mail) * * @param string $email * @@ -75,7 +75,7 @@ public function setEmail(string $email) : self return $this; } /** - * テナント情報(Tenant info) + * テナント情報(Tenant Info) * * @return UserAvailableTenant[] */ @@ -84,7 +84,7 @@ public function getTenants() : array return $this->tenants; } /** - * テナント情報(Tenant info) + * テナント情報(Tenant Info) * * @param UserAvailableTenant[] $tenants * diff --git a/generated/Billing/Client.php b/generated/Billing/Client.php index ff8d7e1..83157ad 100644 --- a/generated/Billing/Client.php +++ b/generated/Billing/Client.php @@ -28,8 +28,8 @@ public function getStripeInfo(string $fetch = self::FETCH_OBJECT) * 請求業務で使う外部SaaSとの連携情報を更新します。 現在は Stripe と連携が可能です。 - Updates information on linkage with external SaaS used in billing operations. - Currently, it is possible to linkage with Stripe. + Updates information on connection with external billing SaaS. + Currently possible to connect to Stripe. * * @param null|\AntiPatternInc\Saasus\Sdk\Billing\Model\UpdateStripeInfoParam $requestBody diff --git a/generated/Billing/Endpoint/UpdateStripeInfo.php b/generated/Billing/Endpoint/UpdateStripeInfo.php index 8f959c9..9cef65a 100644 --- a/generated/Billing/Endpoint/UpdateStripeInfo.php +++ b/generated/Billing/Endpoint/UpdateStripeInfo.php @@ -8,8 +8,8 @@ class UpdateStripeInfo extends \AntiPatternInc\Saasus\Sdk\Billing\Runtime\Client * 請求業務で使う外部SaaSとの連携情報を更新します。 現在は Stripe と連携が可能です。 - Updates information on linkage with external SaaS used in billing operations. - Currently, it is possible to linkage with Stripe. + Updates information on connection with external billing SaaS. + Currently possible to connect to Stripe. * * @param null|\AntiPatternInc\Saasus\Sdk\Billing\Model\UpdateStripeInfoParam $requestBody diff --git a/generated/Integration/Client.php b/generated/Integration/Client.php index e84bb2e..516a278 100644 --- a/generated/Integration/Client.php +++ b/generated/Integration/Client.php @@ -27,7 +27,7 @@ public function getEventBridgeSettings(string $fetch = self::FETCH_OBJECT) /** * ホストの状態を Amazon EventBridge 経由で提供するための設定を更新します。 - Update the configuration to provide host state via Amazon EventBridge. + Update configuration used to provide the host state via Amazon EventBridge. * * @param null|\stdClass $requestBody diff --git a/generated/Integration/Endpoint/SaveEventBridgeSettings.php b/generated/Integration/Endpoint/SaveEventBridgeSettings.php index 5fb9796..1225e5f 100644 --- a/generated/Integration/Endpoint/SaveEventBridgeSettings.php +++ b/generated/Integration/Endpoint/SaveEventBridgeSettings.php @@ -7,7 +7,7 @@ class SaveEventBridgeSettings extends \AntiPatternInc\Saasus\Sdk\Integration\Run /** * ホストの状態を Amazon EventBridge 経由で提供するための設定を更新します。 - Update the configuration to provide host state via Amazon EventBridge. + Update configuration used to provide the host state via Amazon EventBridge. * * @param null|\stdClass $requestBody diff --git a/generated/Integration/Model/EventBridgeSettings.php b/generated/Integration/Model/EventBridgeSettings.php index babb610..a40d5e2 100644 --- a/generated/Integration/Model/EventBridgeSettings.php +++ b/generated/Integration/Model/EventBridgeSettings.php @@ -13,7 +13,7 @@ public function isInitialized($property) : bool return array_key_exists($property, $this->initialized); } /** - * AWSアカウントID(AWS account ID) + * AWSアカウントID(AWS Account ID) * * @var string */ @@ -28,7 +28,7 @@ public function isInitialized($property) : bool */ protected $awsRegion; /** - * AWSアカウントID(AWS account ID) + * AWSアカウントID(AWS Account ID) * * @return string */ @@ -37,7 +37,7 @@ public function getAwsAccountId() : string return $this->awsAccountId; } /** - * AWSアカウントID(AWS account ID) + * AWSアカウントID(AWS Account ID) * * @param string $awsAccountId * diff --git a/generated/Integration/Model/EventMessage.php b/generated/Integration/Model/EventMessage.php index b51bc9b..052f8a5 100644 --- a/generated/Integration/Model/EventMessage.php +++ b/generated/Integration/Model/EventMessage.php @@ -19,7 +19,7 @@ public function isInitialized($property) : bool */ protected $eventType; /** - * 詳細イベントタイプ(Detailed event type) + * 詳細イベントタイプ(detailed event type) * * @var string */ @@ -53,7 +53,7 @@ public function setEventType(string $eventType) : self return $this; } /** - * 詳細イベントタイプ(Detailed event type) + * 詳細イベントタイプ(detailed event type) * * @return string */ @@ -62,7 +62,7 @@ public function getEventDetailType() : string return $this->eventDetailType; } /** - * 詳細イベントタイプ(Detailed event type) + * 詳細イベントタイプ(detailed event type) * * @param string $eventDetailType * diff --git a/generated/Integration/README.md b/generated/Integration/README.md new file mode 100644 index 0000000..2ee662c --- /dev/null +++ b/generated/Integration/README.md @@ -0,0 +1,10 @@ +# Integration + +詳細(引数、戻り値)は API ドキュメントを[参照](https://docs.saasus.io/reference/geteventbridgesettings) + +## EventBridge 連携設定 + +- getEventBridgeSettings ・・・イベント連携設定を取得 +- saveEventBridgeSettings ・・・イベント連携設定を更新 +- deleteEventBridgeSettings ・・・イベント連携設定を削除 +- createEventBridgeTestEvent ・・・イベント連携のテスト送信 diff --git a/generated/Pricing/Client.php b/generated/Pricing/Client.php index 866eff1..029a782 100644 --- a/generated/Pricing/Client.php +++ b/generated/Pricing/Client.php @@ -17,7 +17,7 @@ public function getPricingUnits(string $fetch = self::FETCH_OBJECT) /** * プライシングユニットを作成します。 - Create a Pricing Unit. + Create a pricing unit. * * @param null|\stdClass $requestBody @@ -33,7 +33,7 @@ public function createPricingUnit(?\stdClass $requestBody = null, string $fetch /** * プライシングユニットを削除します。 - Delete a Pricing Unit. + Delete a pricing unit. * * @param string $pricingUnitId ユニットID(unit id) @@ -49,7 +49,7 @@ public function deletePricingUnit(string $pricingUnitId, string $fetch = self::F /** * プライシングユニットを取得します。 - Get a Pricing Unit. + Get a pricing unit. * * @param string $pricingUnitId ユニットID(unit id) @@ -65,7 +65,7 @@ public function getPricingUnit(string $pricingUnitId, string $fetch = self::FETC /** * プライシングユニット情報を更新します。 - Update Pricing Unit information. + Update pricing unit. * * @param string $pricingUnitId ユニットID(unit id) @@ -92,7 +92,7 @@ public function getPricingMenus(string $fetch = self::FETCH_OBJECT) /** * プライシング機能メニューを作成します。 - Create a pricing features menu. + Create a pricing feature menu. * * @param null|\stdClass $requestBody @@ -108,7 +108,7 @@ public function createPricingMenu(?\stdClass $requestBody = null, string $fetch /** * プライシング機能メニューを削除します。 - Delete the Pricing Feature menu. + Delete pricing feature menu. * * @param string $menuId メニューID(menu ID) @@ -125,7 +125,7 @@ public function deletePricingMenu(string $menuId, string $fetch = self::FETCH_OB /** * プライシング機能メニューを取得します。 - Get the pricing features menu. + Get a pricing feature menu. * * @param string $menuId メニューID(menu ID) @@ -168,7 +168,7 @@ public function getPricingPlans(string $fetch = self::FETCH_OBJECT) /** * 料金プランを作成します。 - Create a pricing plan. + Create pricing plan. * * @param null|\stdClass $requestBody @@ -184,10 +184,10 @@ public function createPricingPlan(?\stdClass $requestBody = null, string $fetch /** * 料金プランを削除します。 - Delete a Pricing plan. + Delete pricing plan. * - * @param string $planId 料金プランID(Price plan ID) + * @param string $planId 料金プランID(price plan ID) * @param string $fetch Fetch mode to use (can be OBJECT or RESPONSE) * @throws \AntiPatternInc\Saasus\Sdk\Pricing\Exception\DeletePricingPlanNotFoundException * @throws \AntiPatternInc\Saasus\Sdk\Pricing\Exception\DeletePricingPlanInternalServerErrorException @@ -201,10 +201,10 @@ public function deletePricingPlan(string $planId, string $fetch = self::FETCH_OB /** * 料金プランを取得します。 - Get a Pricing plan. + Get pricing plan. * - * @param string $planId 料金プランID(Price plan ID) + * @param string $planId 料金プランID(price plan ID) * @param string $fetch Fetch mode to use (can be OBJECT or RESPONSE) * @throws \AntiPatternInc\Saasus\Sdk\Pricing\Exception\GetPricingPlanInternalServerErrorException * @@ -217,10 +217,10 @@ public function getPricingPlan(string $planId, string $fetch = self::FETCH_OBJEC /** * 料金プランを更新します。 - Update Pricing plan. + Update pricing plan. * - * @param string $planId 料金プランID(Price plan ID) + * @param string $planId 料金プランID(price plan ID) * @param null|\stdClass $requestBody * @param string $fetch Fetch mode to use (can be OBJECT or RESPONSE) * @throws \AntiPatternInc\Saasus\Sdk\Pricing\Exception\UpdatePricingPlanInternalServerErrorException @@ -234,7 +234,7 @@ public function updatePricingPlan(string $planId, ?\stdClass $requestBody = null /** * 料金プランと配下のメニュー・ユニットを使用済みに更新します。 - Updates the price plan and feature menu/pricing unit to used. + Update price plan and feature menu/pricing unit to used. * * @param null|\AntiPatternInc\Saasus\Sdk\Pricing\Model\UpdatePricingPlansUsedParam $requestBody @@ -257,10 +257,20 @@ public function linkPlanToStripe(string $fetch = self::FETCH_OBJECT) { return $this->executeEndpoint(new \AntiPatternInc\Saasus\Sdk\Pricing\Endpoint\LinkPlanToStripe(), $fetch); } + /** + * @param string $fetch Fetch mode to use (can be OBJECT or RESPONSE) + * @throws \AntiPatternInc\Saasus\Sdk\Pricing\Exception\DeleteStripePlanInternalServerErrorException + * + * @return null|\Psr\Http\Message\ResponseInterface + */ + public function deleteStripePlan(string $fetch = self::FETCH_OBJECT) + { + return $this->executeEndpoint(new \AntiPatternInc\Saasus\Sdk\Pricing\Endpoint\DeleteStripePlan(), $fetch); + } /** * 指定した日付のメータリングユニットカウントを取得します。 - Gets the metering unit count for the specified date. + Gets the metering unit count for specific date. * * @param string $tenantId テナントID(tenant id) @@ -278,7 +288,7 @@ public function getMeteringUnitDateCountByTenantIdAndUnitNameAndDate(string $ten /** * 指定したタイムスタンプのメータリングユニットカウントを削除します。 - Deletes the metering unit count for the specified timestamp. + Deletes metering unit count for the specified timestamp. * * @param string $tenantId テナントID(tenant id) @@ -296,7 +306,7 @@ public function deleteMeteringUnitTimestampCount(string $tenantId, string $meter /** * 指定したタイムスタンプのメータリングユニットカウントを更新します。 - Update the metering unit count for the specified timestamp. + Update metering unit count for the specified timestamp. * * @param string $tenantId テナントID(tenant id) diff --git a/generated/Pricing/Endpoint/CreatePricingMenu.php b/generated/Pricing/Endpoint/CreatePricingMenu.php index 426a3eb..213536b 100644 --- a/generated/Pricing/Endpoint/CreatePricingMenu.php +++ b/generated/Pricing/Endpoint/CreatePricingMenu.php @@ -7,7 +7,7 @@ class CreatePricingMenu extends \AntiPatternInc\Saasus\Sdk\Pricing\Runtime\Clien /** * プライシング機能メニューを作成します。 - Create a pricing features menu. + Create a pricing feature menu. * * @param null|\stdClass $requestBody diff --git a/generated/Pricing/Endpoint/CreatePricingPlan.php b/generated/Pricing/Endpoint/CreatePricingPlan.php index e432218..ae90495 100644 --- a/generated/Pricing/Endpoint/CreatePricingPlan.php +++ b/generated/Pricing/Endpoint/CreatePricingPlan.php @@ -7,7 +7,7 @@ class CreatePricingPlan extends \AntiPatternInc\Saasus\Sdk\Pricing\Runtime\Clien /** * 料金プランを作成します。 - Create a pricing plan. + Create pricing plan. * * @param null|\stdClass $requestBody diff --git a/generated/Pricing/Endpoint/CreatePricingUnit.php b/generated/Pricing/Endpoint/CreatePricingUnit.php index f4197ce..a269d3a 100644 --- a/generated/Pricing/Endpoint/CreatePricingUnit.php +++ b/generated/Pricing/Endpoint/CreatePricingUnit.php @@ -7,7 +7,7 @@ class CreatePricingUnit extends \AntiPatternInc\Saasus\Sdk\Pricing\Runtime\Clien /** * プライシングユニットを作成します。 - Create a Pricing Unit. + Create a pricing unit. * * @param null|\stdClass $requestBody diff --git a/generated/Pricing/Endpoint/DeleteMeteringUnitTimestampCount.php b/generated/Pricing/Endpoint/DeleteMeteringUnitTimestampCount.php index 3998ca3..92a3dc7 100644 --- a/generated/Pricing/Endpoint/DeleteMeteringUnitTimestampCount.php +++ b/generated/Pricing/Endpoint/DeleteMeteringUnitTimestampCount.php @@ -10,7 +10,7 @@ class DeleteMeteringUnitTimestampCount extends \AntiPatternInc\Saasus\Sdk\Pricin /** * 指定したタイムスタンプのメータリングユニットカウントを削除します。 - Deletes the metering unit count for the specified timestamp. + Deletes metering unit count for the specified timestamp. * * @param string $tenantId テナントID(tenant id) diff --git a/generated/Pricing/Endpoint/DeletePricingMenu.php b/generated/Pricing/Endpoint/DeletePricingMenu.php index 30459a5..8b25875 100644 --- a/generated/Pricing/Endpoint/DeletePricingMenu.php +++ b/generated/Pricing/Endpoint/DeletePricingMenu.php @@ -8,7 +8,7 @@ class DeletePricingMenu extends \AntiPatternInc\Saasus\Sdk\Pricing\Runtime\Clien /** * プライシング機能メニューを削除します。 - Delete the Pricing Feature menu. + Delete pricing feature menu. * * @param string $menuId メニューID(menu ID) diff --git a/generated/Pricing/Endpoint/DeletePricingPlan.php b/generated/Pricing/Endpoint/DeletePricingPlan.php index 0a3f97c..210a07b 100644 --- a/generated/Pricing/Endpoint/DeletePricingPlan.php +++ b/generated/Pricing/Endpoint/DeletePricingPlan.php @@ -8,10 +8,10 @@ class DeletePricingPlan extends \AntiPatternInc\Saasus\Sdk\Pricing\Runtime\Clien /** * 料金プランを削除します。 - Delete a Pricing plan. + Delete pricing plan. * - * @param string $planId 料金プランID(Price plan ID) + * @param string $planId 料金プランID(price plan ID) */ public function __construct(string $planId) { diff --git a/generated/Pricing/Endpoint/DeletePricingUnit.php b/generated/Pricing/Endpoint/DeletePricingUnit.php index bfccf4e..216a53d 100644 --- a/generated/Pricing/Endpoint/DeletePricingUnit.php +++ b/generated/Pricing/Endpoint/DeletePricingUnit.php @@ -8,7 +8,7 @@ class DeletePricingUnit extends \AntiPatternInc\Saasus\Sdk\Pricing\Runtime\Clien /** * プライシングユニットを削除します。 - Delete a Pricing Unit. + Delete a pricing unit. * * @param string $pricingUnitId ユニットID(unit id) diff --git a/generated/Pricing/Endpoint/DeleteStripePlan.php b/generated/Pricing/Endpoint/DeleteStripePlan.php new file mode 100644 index 0000000..7da909f --- /dev/null +++ b/generated/Pricing/Endpoint/DeleteStripePlan.php @@ -0,0 +1,44 @@ + array('application/json')); + } + /** + * {@inheritdoc} + * + * @throws \AntiPatternInc\Saasus\Sdk\Pricing\Exception\DeleteStripePlanInternalServerErrorException + * + * @return null + */ + protected function transformResponseBody(string $body, int $status, \Symfony\Component\Serializer\SerializerInterface $serializer, ?string $contentType = null) + { + if (200 === $status) { + return null; + } + if (is_null($contentType) === false && (500 === $status && mb_strpos($contentType, 'application/json') !== false)) { + throw new \AntiPatternInc\Saasus\Sdk\Pricing\Exception\DeleteStripePlanInternalServerErrorException($serializer->deserialize($body, 'AntiPatternInc\\Saasus\\Sdk\\Pricing\\Model\\Error', 'json')); + } + } + public function getAuthenticationScopes() : array + { + return array('Bearer'); + } +} \ No newline at end of file diff --git a/generated/Pricing/Endpoint/GetMeteringUnitDateCountByTenantIdAndUnitNameAndDate.php b/generated/Pricing/Endpoint/GetMeteringUnitDateCountByTenantIdAndUnitNameAndDate.php index 22b703b..e052871 100644 --- a/generated/Pricing/Endpoint/GetMeteringUnitDateCountByTenantIdAndUnitNameAndDate.php +++ b/generated/Pricing/Endpoint/GetMeteringUnitDateCountByTenantIdAndUnitNameAndDate.php @@ -10,7 +10,7 @@ class GetMeteringUnitDateCountByTenantIdAndUnitNameAndDate extends \AntiPatternI /** * 指定した日付のメータリングユニットカウントを取得します。 - Gets the metering unit count for the specified date. + Gets the metering unit count for specific date. * * @param string $tenantId テナントID(tenant id) diff --git a/generated/Pricing/Endpoint/GetPricingMenu.php b/generated/Pricing/Endpoint/GetPricingMenu.php index 3857443..a2aaee4 100644 --- a/generated/Pricing/Endpoint/GetPricingMenu.php +++ b/generated/Pricing/Endpoint/GetPricingMenu.php @@ -8,7 +8,7 @@ class GetPricingMenu extends \AntiPatternInc\Saasus\Sdk\Pricing\Runtime\Client\B /** * プライシング機能メニューを取得します。 - Get the pricing features menu. + Get a pricing feature menu. * * @param string $menuId メニューID(menu ID) diff --git a/generated/Pricing/Endpoint/GetPricingPlan.php b/generated/Pricing/Endpoint/GetPricingPlan.php index 91c5a84..d915607 100644 --- a/generated/Pricing/Endpoint/GetPricingPlan.php +++ b/generated/Pricing/Endpoint/GetPricingPlan.php @@ -8,10 +8,10 @@ class GetPricingPlan extends \AntiPatternInc\Saasus\Sdk\Pricing\Runtime\Client\B /** * 料金プランを取得します。 - Get a Pricing plan. + Get pricing plan. * - * @param string $planId 料金プランID(Price plan ID) + * @param string $planId 料金プランID(price plan ID) */ public function __construct(string $planId) { diff --git a/generated/Pricing/Endpoint/GetPricingUnit.php b/generated/Pricing/Endpoint/GetPricingUnit.php index 230db04..996694f 100644 --- a/generated/Pricing/Endpoint/GetPricingUnit.php +++ b/generated/Pricing/Endpoint/GetPricingUnit.php @@ -8,7 +8,7 @@ class GetPricingUnit extends \AntiPatternInc\Saasus\Sdk\Pricing\Runtime\Client\B /** * プライシングユニットを取得します。 - Get a Pricing Unit. + Get a pricing unit. * * @param string $pricingUnitId ユニットID(unit id) diff --git a/generated/Pricing/Endpoint/UpdateMeteringUnitTimestampCount.php b/generated/Pricing/Endpoint/UpdateMeteringUnitTimestampCount.php index 53cbd1a..f4db1ca 100644 --- a/generated/Pricing/Endpoint/UpdateMeteringUnitTimestampCount.php +++ b/generated/Pricing/Endpoint/UpdateMeteringUnitTimestampCount.php @@ -10,7 +10,7 @@ class UpdateMeteringUnitTimestampCount extends \AntiPatternInc\Saasus\Sdk\Pricin /** * 指定したタイムスタンプのメータリングユニットカウントを更新します。 - Update the metering unit count for the specified timestamp. + Update metering unit count for the specified timestamp. * * @param string $tenantId テナントID(tenant id) diff --git a/generated/Pricing/Endpoint/UpdatePricingPlan.php b/generated/Pricing/Endpoint/UpdatePricingPlan.php index 53c52f4..521ed1f 100644 --- a/generated/Pricing/Endpoint/UpdatePricingPlan.php +++ b/generated/Pricing/Endpoint/UpdatePricingPlan.php @@ -8,10 +8,10 @@ class UpdatePricingPlan extends \AntiPatternInc\Saasus\Sdk\Pricing\Runtime\Clien /** * 料金プランを更新します。 - Update Pricing plan. + Update pricing plan. * - * @param string $planId 料金プランID(Price plan ID) + * @param string $planId 料金プランID(price plan ID) * @param null|\stdClass $requestBody */ public function __construct(string $planId, ?\stdClass $requestBody = null) diff --git a/generated/Pricing/Endpoint/UpdatePricingPlansUsed.php b/generated/Pricing/Endpoint/UpdatePricingPlansUsed.php index 551d802..5eae20c 100644 --- a/generated/Pricing/Endpoint/UpdatePricingPlansUsed.php +++ b/generated/Pricing/Endpoint/UpdatePricingPlansUsed.php @@ -7,7 +7,7 @@ class UpdatePricingPlansUsed extends \AntiPatternInc\Saasus\Sdk\Pricing\Runtime\ /** * 料金プランと配下のメニュー・ユニットを使用済みに更新します。 - Updates the price plan and feature menu/pricing unit to used. + Update price plan and feature menu/pricing unit to used. * * @param null|\AntiPatternInc\Saasus\Sdk\Pricing\Model\UpdatePricingPlansUsedParam $requestBody diff --git a/generated/Pricing/Endpoint/UpdatePricingUnit.php b/generated/Pricing/Endpoint/UpdatePricingUnit.php index 6ba15a1..6513c04 100644 --- a/generated/Pricing/Endpoint/UpdatePricingUnit.php +++ b/generated/Pricing/Endpoint/UpdatePricingUnit.php @@ -8,7 +8,7 @@ class UpdatePricingUnit extends \AntiPatternInc\Saasus\Sdk\Pricing\Runtime\Clien /** * プライシングユニット情報を更新します。 - Update Pricing Unit information. + Update pricing unit. * * @param string $pricingUnitId ユニットID(unit id) diff --git a/generated/Pricing/Exception/DeleteStripePlanInternalServerErrorException.php b/generated/Pricing/Exception/DeleteStripePlanInternalServerErrorException.php new file mode 100644 index 0000000..5c06343 --- /dev/null +++ b/generated/Pricing/Exception/DeleteStripePlanInternalServerErrorException.php @@ -0,0 +1,20 @@ +error = $error; + } + public function getError() : \AntiPatternInc\Saasus\Sdk\Pricing\Model\Error + { + return $this->error; + } +} \ No newline at end of file diff --git a/generated/Pricing/Model/MeteringUnitDateCount.php b/generated/Pricing/Model/MeteringUnitDateCount.php index 7d15886..2f4ca34 100644 --- a/generated/Pricing/Model/MeteringUnitDateCount.php +++ b/generated/Pricing/Model/MeteringUnitDateCount.php @@ -13,7 +13,7 @@ public function isInitialized($property) : bool return array_key_exists($property, $this->initialized); } /** - * 計測ユニット名(Metering unit name) + * 計測ユニット名(metering unit name) * * @var string */ @@ -31,7 +31,7 @@ public function isInitialized($property) : bool */ protected $count; /** - * 計測ユニット名(Metering unit name) + * 計測ユニット名(metering unit name) * * @return string */ @@ -40,7 +40,7 @@ public function getMeteringUnitName() : string return $this->meteringUnitName; } /** - * 計測ユニット名(Metering unit name) + * 計測ユニット名(metering unit name) * * @param string $meteringUnitName * diff --git a/generated/Pricing/Model/MeteringUnitMonthCount.php b/generated/Pricing/Model/MeteringUnitMonthCount.php index d557a85..26c6cab 100644 --- a/generated/Pricing/Model/MeteringUnitMonthCount.php +++ b/generated/Pricing/Model/MeteringUnitMonthCount.php @@ -13,7 +13,7 @@ public function isInitialized($property) : bool return array_key_exists($property, $this->initialized); } /** - * 計測ユニット名(Metering unit name) + * 計測ユニット名(metering unit name) * * @var string */ @@ -31,7 +31,7 @@ public function isInitialized($property) : bool */ protected $count; /** - * 計測ユニット名(Metering unit name) + * 計測ユニット名(metering unit name) * * @return string */ @@ -40,7 +40,7 @@ public function getMeteringUnitName() : string return $this->meteringUnitName; } /** - * 計測ユニット名(Metering unit name) + * 計測ユニット名(metering unit name) * * @param string $meteringUnitName * diff --git a/generated/Pricing/Model/PricingFixedUnit.php b/generated/Pricing/Model/PricingFixedUnit.php index cd15433..84a1950 100644 --- a/generated/Pricing/Model/PricingFixedUnit.php +++ b/generated/Pricing/Model/PricingFixedUnit.php @@ -31,7 +31,7 @@ public function isInitialized($property) : bool */ protected $unitAmount; /** - * 繰り返し期間(repeat period) + * 繰り返し期間(cycle) month: 月単位(monthly) year: 年単位(yearly) @@ -58,7 +58,7 @@ public function isInitialized($property) : bool */ protected $description; /** - * 計測単位の種別(Type of unit of measurement) + * 計測単位の種別(unit of measurement type) fixed: 固定ユニット(fixed unit) usage: 使用量ユニット(usage unit) tiered: 段階ユニット(tiered unit) @@ -141,7 +141,7 @@ public function setUnitAmount(int $unitAmount) : self return $this; } /** - * 繰り返し期間(repeat period) + * 繰り返し期間(cycle) month: 月単位(monthly) year: 年単位(yearly) @@ -153,7 +153,7 @@ public function getRecurringInterval() : string return $this->recurringInterval; } /** - * 繰り返し期間(repeat period) + * 繰り返し期間(cycle) month: 月単位(monthly) year: 年単位(yearly) @@ -235,7 +235,7 @@ public function setDescription(string $description) : self return $this; } /** - * 計測単位の種別(Type of unit of measurement) + * 計測単位の種別(unit of measurement type) fixed: 固定ユニット(fixed unit) usage: 使用量ユニット(usage unit) tiered: 段階ユニット(tiered unit) @@ -249,7 +249,7 @@ public function getType() : string return $this->type; } /** - * 計測単位の種別(Type of unit of measurement) + * 計測単位の種別(unit of measurement type) fixed: 固定ユニット(fixed unit) usage: 使用量ユニット(usage unit) tiered: 段階ユニット(tiered unit) diff --git a/generated/Pricing/Model/PricingFixedUnitForSave.php b/generated/Pricing/Model/PricingFixedUnitForSave.php index 12c2c9b..e01d7fb 100644 --- a/generated/Pricing/Model/PricingFixedUnitForSave.php +++ b/generated/Pricing/Model/PricingFixedUnitForSave.php @@ -19,7 +19,7 @@ public function isInitialized($property) : bool */ protected $unitAmount; /** - * 繰り返し期間(repeat period) + * 繰り返し期間(cycle) month: 月単位(monthly) year: 年単位(yearly) @@ -46,7 +46,7 @@ public function isInitialized($property) : bool */ protected $description; /** - * 計測単位の種別(Type of unit of measurement) + * 計測単位の種別(unit of measurement type) fixed: 固定ユニット(fixed unit) usage: 使用量ユニット(usage unit) tiered: 段階ユニット(tiered unit) @@ -85,7 +85,7 @@ public function setUnitAmount(int $unitAmount) : self return $this; } /** - * 繰り返し期間(repeat period) + * 繰り返し期間(cycle) month: 月単位(monthly) year: 年単位(yearly) @@ -97,7 +97,7 @@ public function getRecurringInterval() : string return $this->recurringInterval; } /** - * 繰り返し期間(repeat period) + * 繰り返し期間(cycle) month: 月単位(monthly) year: 年単位(yearly) @@ -179,7 +179,7 @@ public function setDescription(string $description) : self return $this; } /** - * 計測単位の種別(Type of unit of measurement) + * 計測単位の種別(unit of measurement type) fixed: 固定ユニット(fixed unit) usage: 使用量ユニット(usage unit) tiered: 段階ユニット(tiered unit) @@ -193,7 +193,7 @@ public function getType() : string return $this->type; } /** - * 計測単位の種別(Type of unit of measurement) + * 計測単位の種別(unit of measurement type) fixed: 固定ユニット(fixed unit) usage: 使用量ユニット(usage unit) tiered: 段階ユニット(tiered unit) diff --git a/generated/Pricing/Model/PricingMenu.php b/generated/Pricing/Model/PricingMenu.php index f4cb926..cc663c1 100644 --- a/generated/Pricing/Model/PricingMenu.php +++ b/generated/Pricing/Model/PricingMenu.php @@ -19,25 +19,25 @@ public function isInitialized($property) : bool */ protected $id; /** - * メニュー名(Menu name) + * メニュー名(menu name) * * @var string */ protected $name; /** - * メニュー表示名(Menu display name) + * メニュー表示名(menu display name) * * @var string */ protected $displayName; /** - * メニュー説明(Menu description) + * メニュー説明(menu description) * * @var string */ protected $description; /** - * メニューの使用済み設定(Menu used settings) + * メニューの使用済み設定(menu used settings) * * @var bool */ @@ -71,7 +71,7 @@ public function setId(string $id) : self return $this; } /** - * メニュー名(Menu name) + * メニュー名(menu name) * * @return string */ @@ -80,7 +80,7 @@ public function getName() : string return $this->name; } /** - * メニュー名(Menu name) + * メニュー名(menu name) * * @param string $name * @@ -93,7 +93,7 @@ public function setName(string $name) : self return $this; } /** - * メニュー表示名(Menu display name) + * メニュー表示名(menu display name) * * @return string */ @@ -102,7 +102,7 @@ public function getDisplayName() : string return $this->displayName; } /** - * メニュー表示名(Menu display name) + * メニュー表示名(menu display name) * * @param string $displayName * @@ -115,7 +115,7 @@ public function setDisplayName(string $displayName) : self return $this; } /** - * メニュー説明(Menu description) + * メニュー説明(menu description) * * @return string */ @@ -124,7 +124,7 @@ public function getDescription() : string return $this->description; } /** - * メニュー説明(Menu description) + * メニュー説明(menu description) * * @param string $description * @@ -137,7 +137,7 @@ public function setDescription(string $description) : self return $this; } /** - * メニューの使用済み設定(Menu used settings) + * メニューの使用済み設定(menu used settings) * * @return bool */ @@ -146,7 +146,7 @@ public function getUsed() : bool return $this->used; } /** - * メニューの使用済み設定(Menu used settings) + * メニューの使用済み設定(menu used settings) * * @param bool $used * diff --git a/generated/Pricing/Model/PricingMenuProps.php b/generated/Pricing/Model/PricingMenuProps.php index 511526e..51f5631 100644 --- a/generated/Pricing/Model/PricingMenuProps.php +++ b/generated/Pricing/Model/PricingMenuProps.php @@ -13,25 +13,25 @@ public function isInitialized($property) : bool return array_key_exists($property, $this->initialized); } /** - * メニュー名(Menu name) + * メニュー名(menu name) * * @var string */ protected $name; /** - * メニュー表示名(Menu display name) + * メニュー表示名(menu display name) * * @var string */ protected $displayName; /** - * メニュー説明(Menu description) + * メニュー説明(menu description) * * @var string */ protected $description; /** - * メニューの使用済み設定(Menu used settings) + * メニューの使用済み設定(menu used settings) * * @var bool */ @@ -43,7 +43,7 @@ public function isInitialized($property) : bool */ protected $units; /** - * メニュー名(Menu name) + * メニュー名(menu name) * * @return string */ @@ -52,7 +52,7 @@ public function getName() : string return $this->name; } /** - * メニュー名(Menu name) + * メニュー名(menu name) * * @param string $name * @@ -65,7 +65,7 @@ public function setName(string $name) : self return $this; } /** - * メニュー表示名(Menu display name) + * メニュー表示名(menu display name) * * @return string */ @@ -74,7 +74,7 @@ public function getDisplayName() : string return $this->displayName; } /** - * メニュー表示名(Menu display name) + * メニュー表示名(menu display name) * * @param string $displayName * @@ -87,7 +87,7 @@ public function setDisplayName(string $displayName) : self return $this; } /** - * メニュー説明(Menu description) + * メニュー説明(menu description) * * @return string */ @@ -96,7 +96,7 @@ public function getDescription() : string return $this->description; } /** - * メニュー説明(Menu description) + * メニュー説明(menu description) * * @param string $description * @@ -109,7 +109,7 @@ public function setDescription(string $description) : self return $this; } /** - * メニューの使用済み設定(Menu used settings) + * メニューの使用済み設定(menu used settings) * * @return bool */ @@ -118,7 +118,7 @@ public function getUsed() : bool return $this->used; } /** - * メニューの使用済み設定(Menu used settings) + * メニューの使用済み設定(menu used settings) * * @param bool $used * diff --git a/generated/Pricing/Model/PricingPlan.php b/generated/Pricing/Model/PricingPlan.php index 2969fd9..13fe696 100644 --- a/generated/Pricing/Model/PricingPlan.php +++ b/generated/Pricing/Model/PricingPlan.php @@ -19,25 +19,25 @@ public function isInitialized($property) : bool */ protected $id; /** - * 料金プラン名(Pricing plan name) + * 料金プラン名(pricing plan name) * * @var string */ protected $name; /** - * 料金プラン表示名(Pricing plan display name) + * 料金プラン表示名(pricing plan display name) * * @var string */ protected $displayName; /** - * 料金プラン説明(Pricing plan description) + * 料金プラン説明(pricing plan description) * * @var string */ protected $description; /** - * 料金プランの使用済み設定(Pricing plan used settings) + * 料金プランの使用済み設定(pricing plan used settings) * * @var bool */ @@ -71,7 +71,7 @@ public function setId(string $id) : self return $this; } /** - * 料金プラン名(Pricing plan name) + * 料金プラン名(pricing plan name) * * @return string */ @@ -80,7 +80,7 @@ public function getName() : string return $this->name; } /** - * 料金プラン名(Pricing plan name) + * 料金プラン名(pricing plan name) * * @param string $name * @@ -93,7 +93,7 @@ public function setName(string $name) : self return $this; } /** - * 料金プラン表示名(Pricing plan display name) + * 料金プラン表示名(pricing plan display name) * * @return string */ @@ -102,7 +102,7 @@ public function getDisplayName() : string return $this->displayName; } /** - * 料金プラン表示名(Pricing plan display name) + * 料金プラン表示名(pricing plan display name) * * @param string $displayName * @@ -115,7 +115,7 @@ public function setDisplayName(string $displayName) : self return $this; } /** - * 料金プラン説明(Pricing plan description) + * 料金プラン説明(pricing plan description) * * @return string */ @@ -124,7 +124,7 @@ public function getDescription() : string return $this->description; } /** - * 料金プラン説明(Pricing plan description) + * 料金プラン説明(pricing plan description) * * @param string $description * @@ -137,7 +137,7 @@ public function setDescription(string $description) : self return $this; } /** - * 料金プランの使用済み設定(Pricing plan used settings) + * 料金プランの使用済み設定(pricing plan used settings) * * @return bool */ @@ -146,7 +146,7 @@ public function getUsed() : bool return $this->used; } /** - * 料金プランの使用済み設定(Pricing plan used settings) + * 料金プランの使用済み設定(pricing plan used settings) * * @param bool $used * diff --git a/generated/Pricing/Model/PricingPlanProps.php b/generated/Pricing/Model/PricingPlanProps.php index 6b475aa..194e71f 100644 --- a/generated/Pricing/Model/PricingPlanProps.php +++ b/generated/Pricing/Model/PricingPlanProps.php @@ -13,25 +13,25 @@ public function isInitialized($property) : bool return array_key_exists($property, $this->initialized); } /** - * 料金プラン名(Pricing plan name) + * 料金プラン名(pricing plan name) * * @var string */ protected $name; /** - * 料金プラン表示名(Pricing plan display name) + * 料金プラン表示名(pricing plan display name) * * @var string */ protected $displayName; /** - * 料金プラン説明(Pricing plan description) + * 料金プラン説明(pricing plan description) * * @var string */ protected $description; /** - * 料金プランの使用済み設定(Pricing plan used settings) + * 料金プランの使用済み設定(pricing plan used settings) * * @var bool */ @@ -43,7 +43,7 @@ public function isInitialized($property) : bool */ protected $pricingMenus; /** - * 料金プラン名(Pricing plan name) + * 料金プラン名(pricing plan name) * * @return string */ @@ -52,7 +52,7 @@ public function getName() : string return $this->name; } /** - * 料金プラン名(Pricing plan name) + * 料金プラン名(pricing plan name) * * @param string $name * @@ -65,7 +65,7 @@ public function setName(string $name) : self return $this; } /** - * 料金プラン表示名(Pricing plan display name) + * 料金プラン表示名(pricing plan display name) * * @return string */ @@ -74,7 +74,7 @@ public function getDisplayName() : string return $this->displayName; } /** - * 料金プラン表示名(Pricing plan display name) + * 料金プラン表示名(pricing plan display name) * * @param string $displayName * @@ -87,7 +87,7 @@ public function setDisplayName(string $displayName) : self return $this; } /** - * 料金プラン説明(Pricing plan description) + * 料金プラン説明(pricing plan description) * * @return string */ @@ -96,7 +96,7 @@ public function getDescription() : string return $this->description; } /** - * 料金プラン説明(Pricing plan description) + * 料金プラン説明(pricing plan description) * * @param string $description * @@ -109,7 +109,7 @@ public function setDescription(string $description) : self return $this; } /** - * 料金プランの使用済み設定(Pricing plan used settings) + * 料金プランの使用済み設定(pricing plan used settings) * * @return bool */ @@ -118,7 +118,7 @@ public function getUsed() : bool return $this->used; } /** - * 料金プランの使用済み設定(Pricing plan used settings) + * 料金プランの使用済み設定(pricing plan used settings) * * @param bool $used * diff --git a/generated/Pricing/Model/PricingTier.php b/generated/Pricing/Model/PricingTier.php index 75592f8..d734fea 100644 --- a/generated/Pricing/Model/PricingTier.php +++ b/generated/Pricing/Model/PricingTier.php @@ -19,13 +19,13 @@ public function isInitialized($property) : bool */ protected $upTo; /** - * 単位金額(Amount per unit) + * 単位金額(amount per unit) * * @var int */ protected $unitAmount; /** - * 固定金額(Fixed Amount) + * 固定金額(fixed Amount) * * @var int */ @@ -59,7 +59,7 @@ public function setUpTo(int $upTo) : self return $this; } /** - * 単位金額(Amount per unit) + * 単位金額(amount per unit) * * @return int */ @@ -68,7 +68,7 @@ public function getUnitAmount() : int return $this->unitAmount; } /** - * 単位金額(Amount per unit) + * 単位金額(amount per unit) * * @param int $unitAmount * @@ -81,7 +81,7 @@ public function setUnitAmount(int $unitAmount) : self return $this; } /** - * 固定金額(Fixed Amount) + * 固定金額(fixed Amount) * * @return int */ @@ -90,7 +90,7 @@ public function getFlatAmount() : int return $this->flatAmount; } /** - * 固定金額(Fixed Amount) + * 固定金額(fixed Amount) * * @param int $flatAmount * diff --git a/generated/Pricing/Model/PricingTieredUnit.php b/generated/Pricing/Model/PricingTieredUnit.php index 05f9e06..a40064f 100644 --- a/generated/Pricing/Model/PricingTieredUnit.php +++ b/generated/Pricing/Model/PricingTieredUnit.php @@ -25,7 +25,7 @@ public function isInitialized($property) : bool */ protected $meteringUnitId; /** - * 繰り返し期間(repeat period) + * 繰り返し期間(cycle) month: 月単位(monthly) year: 年単位(yearly) @@ -70,7 +70,7 @@ public function isInitialized($property) : bool */ protected $description; /** - * 計測単位の種別(Type of unit of measurement) + * 計測単位の種別(unit of measurement type) fixed: 固定ユニット(fixed unit) usage: 使用量ユニット(usage unit) tiered: 段階ユニット(tiered unit) @@ -137,7 +137,7 @@ public function setMeteringUnitId(string $meteringUnitId) : self return $this; } /** - * 繰り返し期間(repeat period) + * 繰り返し期間(cycle) month: 月単位(monthly) year: 年単位(yearly) @@ -149,7 +149,7 @@ public function getRecurringInterval() : string return $this->recurringInterval; } /** - * 繰り返し期間(repeat period) + * 繰り返し期間(cycle) month: 月単位(monthly) year: 年単位(yearly) @@ -297,7 +297,7 @@ public function setDescription(string $description) : self return $this; } /** - * 計測単位の種別(Type of unit of measurement) + * 計測単位の種別(unit of measurement type) fixed: 固定ユニット(fixed unit) usage: 使用量ユニット(usage unit) tiered: 段階ユニット(tiered unit) @@ -311,7 +311,7 @@ public function getType() : string return $this->type; } /** - * 計測単位の種別(Type of unit of measurement) + * 計測単位の種別(unit of measurement type) fixed: 固定ユニット(fixed unit) usage: 使用量ユニット(usage unit) tiered: 段階ユニット(tiered unit) diff --git a/generated/Pricing/Model/PricingTieredUnitForSave.php b/generated/Pricing/Model/PricingTieredUnitForSave.php index 0b611e7..1882744 100644 --- a/generated/Pricing/Model/PricingTieredUnitForSave.php +++ b/generated/Pricing/Model/PricingTieredUnitForSave.php @@ -43,7 +43,7 @@ public function isInitialized($property) : bool */ protected $description; /** - * 計測単位の種別(Type of unit of measurement) + * 計測単位の種別(unit of measurement type) fixed: 固定ユニット(fixed unit) usage: 使用量ユニット(usage unit) tiered: 段階ユニット(tiered unit) @@ -176,7 +176,7 @@ public function setDescription(string $description) : self return $this; } /** - * 計測単位の種別(Type of unit of measurement) + * 計測単位の種別(unit of measurement type) fixed: 固定ユニット(fixed unit) usage: 使用量ユニット(usage unit) tiered: 段階ユニット(tiered unit) @@ -190,7 +190,7 @@ public function getType() : string return $this->type; } /** - * 計測単位の種別(Type of unit of measurement) + * 計測単位の種別(unit of measurement type) fixed: 固定ユニット(fixed unit) usage: 使用量ユニット(usage unit) tiered: 段階ユニット(tiered unit) diff --git a/generated/Pricing/Model/PricingTieredUsageUnit.php b/generated/Pricing/Model/PricingTieredUsageUnit.php index c8d362b..354d854 100644 --- a/generated/Pricing/Model/PricingTieredUsageUnit.php +++ b/generated/Pricing/Model/PricingTieredUsageUnit.php @@ -25,7 +25,7 @@ public function isInitialized($property) : bool */ protected $meteringUnitId; /** - * 繰り返し期間(repeat period) + * 繰り返し期間(cycle) month: 月単位(monthly) year: 年単位(yearly) @@ -70,7 +70,7 @@ public function isInitialized($property) : bool */ protected $description; /** - * 計測単位の種別(Type of unit of measurement) + * 計測単位の種別(unit of measurement type) fixed: 固定ユニット(fixed unit) usage: 使用量ユニット(usage unit) tiered: 段階ユニット(tiered unit) @@ -137,7 +137,7 @@ public function setMeteringUnitId(string $meteringUnitId) : self return $this; } /** - * 繰り返し期間(repeat period) + * 繰り返し期間(cycle) month: 月単位(monthly) year: 年単位(yearly) @@ -149,7 +149,7 @@ public function getRecurringInterval() : string return $this->recurringInterval; } /** - * 繰り返し期間(repeat period) + * 繰り返し期間(cycle) month: 月単位(monthly) year: 年単位(yearly) @@ -297,7 +297,7 @@ public function setDescription(string $description) : self return $this; } /** - * 計測単位の種別(Type of unit of measurement) + * 計測単位の種別(unit of measurement type) fixed: 固定ユニット(fixed unit) usage: 使用量ユニット(usage unit) tiered: 段階ユニット(tiered unit) @@ -311,7 +311,7 @@ public function getType() : string return $this->type; } /** - * 計測単位の種別(Type of unit of measurement) + * 計測単位の種別(unit of measurement type) fixed: 固定ユニット(fixed unit) usage: 使用量ユニット(usage unit) tiered: 段階ユニット(tiered unit) diff --git a/generated/Pricing/Model/PricingTieredUsageUnitForSave.php b/generated/Pricing/Model/PricingTieredUsageUnitForSave.php index 318e1e0..9e07e26 100644 --- a/generated/Pricing/Model/PricingTieredUsageUnitForSave.php +++ b/generated/Pricing/Model/PricingTieredUsageUnitForSave.php @@ -43,7 +43,7 @@ public function isInitialized($property) : bool */ protected $description; /** - * 計測単位の種別(Type of unit of measurement) + * 計測単位の種別(unit of measurement type) fixed: 固定ユニット(fixed unit) usage: 使用量ユニット(usage unit) tiered: 段階ユニット(tiered unit) @@ -176,7 +176,7 @@ public function setDescription(string $description) : self return $this; } /** - * 計測単位の種別(Type of unit of measurement) + * 計測単位の種別(unit of measurement type) fixed: 固定ユニット(fixed unit) usage: 使用量ユニット(usage unit) tiered: 段階ユニット(tiered unit) @@ -190,7 +190,7 @@ public function getType() : string return $this->type; } /** - * 計測単位の種別(Type of unit of measurement) + * 計測単位の種別(unit of measurement type) fixed: 固定ユニット(fixed unit) usage: 使用量ユニット(usage unit) tiered: 段階ユニット(tiered unit) diff --git a/generated/Pricing/Model/PricingUnitBaseProps.php b/generated/Pricing/Model/PricingUnitBaseProps.php index 6278bf7..9975b30 100644 --- a/generated/Pricing/Model/PricingUnitBaseProps.php +++ b/generated/Pricing/Model/PricingUnitBaseProps.php @@ -31,7 +31,7 @@ public function isInitialized($property) : bool */ protected $description; /** - * 計測単位の種別(Type of unit of measurement) + * 計測単位の種別(unit of measurement type) fixed: 固定ユニット(fixed unit) usage: 使用量ユニット(usage unit) tiered: 段階ユニット(tiered unit) @@ -114,7 +114,7 @@ public function setDescription(string $description) : self return $this; } /** - * 計測単位の種別(Type of unit of measurement) + * 計測単位の種別(unit of measurement type) fixed: 固定ユニット(fixed unit) usage: 使用量ユニット(usage unit) tiered: 段階ユニット(tiered unit) @@ -128,7 +128,7 @@ public function getType() : string return $this->type; } /** - * 計測単位の種別(Type of unit of measurement) + * 計測単位の種別(unit of measurement type) fixed: 固定ユニット(fixed unit) usage: 使用量ユニット(usage unit) tiered: 段階ユニット(tiered unit) diff --git a/generated/Pricing/Model/PricingUsageUnit.php b/generated/Pricing/Model/PricingUsageUnit.php index b1730c4..59133c5 100644 --- a/generated/Pricing/Model/PricingUsageUnit.php +++ b/generated/Pricing/Model/PricingUsageUnit.php @@ -25,7 +25,7 @@ public function isInitialized($property) : bool */ protected $meteringUnitId; /** - * 繰り返し期間(repeat period) + * 繰り返し期間(cycle) month: 月単位(monthly) year: 年単位(yearly) @@ -46,7 +46,7 @@ public function isInitialized($property) : bool */ protected $upperCount; /** - * 使用量あたりの金額(Amount per usage) + * 使用量あたりの金額(amount per usage) * * @var int */ @@ -76,7 +76,7 @@ public function isInitialized($property) : bool */ protected $description; /** - * 計測単位の種別(Type of unit of measurement) + * 計測単位の種別(unit of measurement type) fixed: 固定ユニット(fixed unit) usage: 使用量ユニット(usage unit) tiered: 段階ユニット(tiered unit) @@ -137,7 +137,7 @@ public function setMeteringUnitId(string $meteringUnitId) : self return $this; } /** - * 繰り返し期間(repeat period) + * 繰り返し期間(cycle) month: 月単位(monthly) year: 年単位(yearly) @@ -149,7 +149,7 @@ public function getRecurringInterval() : string return $this->recurringInterval; } /** - * 繰り返し期間(repeat period) + * 繰り返し期間(cycle) month: 月単位(monthly) year: 年単位(yearly) @@ -209,7 +209,7 @@ public function setUpperCount(int $upperCount) : self return $this; } /** - * 使用量あたりの金額(Amount per usage) + * 使用量あたりの金額(amount per usage) * * @return int */ @@ -218,7 +218,7 @@ public function getUnitAmount() : int return $this->unitAmount; } /** - * 使用量あたりの金額(Amount per usage) + * 使用量あたりの金額(amount per usage) * * @param int $unitAmount * @@ -319,7 +319,7 @@ public function setDescription(string $description) : self return $this; } /** - * 計測単位の種別(Type of unit of measurement) + * 計測単位の種別(unit of measurement type) fixed: 固定ユニット(fixed unit) usage: 使用量ユニット(usage unit) tiered: 段階ユニット(tiered unit) @@ -333,7 +333,7 @@ public function getType() : string return $this->type; } /** - * 計測単位の種別(Type of unit of measurement) + * 計測単位の種別(unit of measurement type) fixed: 固定ユニット(fixed unit) usage: 使用量ユニット(usage unit) tiered: 段階ユニット(tiered unit) diff --git a/generated/Pricing/Model/PricingUsageUnitForSave.php b/generated/Pricing/Model/PricingUsageUnitForSave.php index f30c87c..34e358b 100644 --- a/generated/Pricing/Model/PricingUsageUnitForSave.php +++ b/generated/Pricing/Model/PricingUsageUnitForSave.php @@ -19,7 +19,7 @@ public function isInitialized($property) : bool */ protected $upperCount; /** - * 使用量あたりの金額(Amount per usage) + * 使用量あたりの金額(amount per usage) * * @var int */ @@ -49,7 +49,7 @@ public function isInitialized($property) : bool */ protected $description; /** - * 計測単位の種別(Type of unit of measurement) + * 計測単位の種別(unit of measurement type) fixed: 固定ユニット(fixed unit) usage: 使用量ユニット(usage unit) tiered: 段階ユニット(tiered unit) @@ -88,7 +88,7 @@ public function setUpperCount(int $upperCount) : self return $this; } /** - * 使用量あたりの金額(Amount per usage) + * 使用量あたりの金額(amount per usage) * * @return int */ @@ -97,7 +97,7 @@ public function getUnitAmount() : int return $this->unitAmount; } /** - * 使用量あたりの金額(Amount per usage) + * 使用量あたりの金額(amount per usage) * * @param int $unitAmount * @@ -198,7 +198,7 @@ public function setDescription(string $description) : self return $this; } /** - * 計測単位の種別(Type of unit of measurement) + * 計測単位の種別(unit of measurement type) fixed: 固定ユニット(fixed unit) usage: 使用量ユニット(usage unit) tiered: 段階ユニット(tiered unit) @@ -212,7 +212,7 @@ public function getType() : string return $this->type; } /** - * 計測単位の種別(Type of unit of measurement) + * 計測単位の種別(unit of measurement type) fixed: 固定ユニット(fixed unit) usage: 使用量ユニット(usage unit) tiered: 段階ユニット(tiered unit) diff --git a/generated/Pricing/Model/SavePricingMenuParam.php b/generated/Pricing/Model/SavePricingMenuParam.php index c1a4c80..7fcdd96 100644 --- a/generated/Pricing/Model/SavePricingMenuParam.php +++ b/generated/Pricing/Model/SavePricingMenuParam.php @@ -13,31 +13,31 @@ public function isInitialized($property) : bool return array_key_exists($property, $this->initialized); } /** - * メニュー名(Menu name) + * メニュー名(menu name) * * @var string */ protected $name; /** - * メニュー表示名(Menu display name) + * メニュー表示名(menu display name) * * @var string */ protected $displayName; /** - * メニュー説明(Menu description) + * メニュー説明(menu description) * * @var string */ protected $description; /** - * 追加するユニットID(the unit id to add) + * 追加するユニットID(unit id to add) * * @var string[] */ protected $unitIds; /** - * メニュー名(Menu name) + * メニュー名(menu name) * * @return string */ @@ -46,7 +46,7 @@ public function getName() : string return $this->name; } /** - * メニュー名(Menu name) + * メニュー名(menu name) * * @param string $name * @@ -59,7 +59,7 @@ public function setName(string $name) : self return $this; } /** - * メニュー表示名(Menu display name) + * メニュー表示名(menu display name) * * @return string */ @@ -68,7 +68,7 @@ public function getDisplayName() : string return $this->displayName; } /** - * メニュー表示名(Menu display name) + * メニュー表示名(menu display name) * * @param string $displayName * @@ -81,7 +81,7 @@ public function setDisplayName(string $displayName) : self return $this; } /** - * メニュー説明(Menu description) + * メニュー説明(menu description) * * @return string */ @@ -90,7 +90,7 @@ public function getDescription() : string return $this->description; } /** - * メニュー説明(Menu description) + * メニュー説明(menu description) * * @param string $description * @@ -103,7 +103,7 @@ public function setDescription(string $description) : self return $this; } /** - * 追加するユニットID(the unit id to add) + * 追加するユニットID(unit id to add) * * @return string[] */ @@ -112,7 +112,7 @@ public function getUnitIds() : array return $this->unitIds; } /** - * 追加するユニットID(the unit id to add) + * 追加するユニットID(unit id to add) * * @param string[] $unitIds * diff --git a/generated/Pricing/Model/SavePricingPlanParam.php b/generated/Pricing/Model/SavePricingPlanParam.php index 230ffb4..15ad598 100644 --- a/generated/Pricing/Model/SavePricingPlanParam.php +++ b/generated/Pricing/Model/SavePricingPlanParam.php @@ -13,33 +13,33 @@ public function isInitialized($property) : bool return array_key_exists($property, $this->initialized); } /** - * 料金プラン名(Pricing plan name) + * 料金プラン名(pricing plan name) * * @var string */ protected $name; /** - * 料金プラン表示名(Pricing plan display name) + * 料金プラン表示名(pricing plan display name) * * @var string */ protected $displayName; /** - * 料金プラン説明(Pricing plan description) + * 料金プラン説明(pricing plan description) * * @var string */ protected $description; /** * メニューID(料金プランに追加するメニューIDを設定) - Menu ID (set the menu ID to be added to the pricing plan) + Menu ID (menu ID to be added to the pricing plan) * * @var string[] */ protected $menuIds; /** - * 料金プラン名(Pricing plan name) + * 料金プラン名(pricing plan name) * * @return string */ @@ -48,7 +48,7 @@ public function getName() : string return $this->name; } /** - * 料金プラン名(Pricing plan name) + * 料金プラン名(pricing plan name) * * @param string $name * @@ -61,7 +61,7 @@ public function setName(string $name) : self return $this; } /** - * 料金プラン表示名(Pricing plan display name) + * 料金プラン表示名(pricing plan display name) * * @return string */ @@ -70,7 +70,7 @@ public function getDisplayName() : string return $this->displayName; } /** - * 料金プラン表示名(Pricing plan display name) + * 料金プラン表示名(pricing plan display name) * * @param string $displayName * @@ -83,7 +83,7 @@ public function setDisplayName(string $displayName) : self return $this; } /** - * 料金プラン説明(Pricing plan description) + * 料金プラン説明(pricing plan description) * * @return string */ @@ -92,7 +92,7 @@ public function getDescription() : string return $this->description; } /** - * 料金プラン説明(Pricing plan description) + * 料金プラン説明(pricing plan description) * * @param string $description * @@ -106,7 +106,7 @@ public function setDescription(string $description) : self } /** * メニューID(料金プランに追加するメニューIDを設定) - Menu ID (set the menu ID to be added to the pricing plan) + Menu ID (menu ID to be added to the pricing plan) * * @return string[] @@ -117,7 +117,7 @@ public function getMenuIds() : array } /** * メニューID(料金プランに追加するメニューIDを設定) - Menu ID (set the menu ID to be added to the pricing plan) + Menu ID (menu ID to be added to the pricing plan) * * @param string[] $menuIds diff --git a/generated/Pricing/Model/UpdateMeteringUnitTimestampCountNowParam.php b/generated/Pricing/Model/UpdateMeteringUnitTimestampCountNowParam.php index 6b516c5..7d70926 100644 --- a/generated/Pricing/Model/UpdateMeteringUnitTimestampCountNowParam.php +++ b/generated/Pricing/Model/UpdateMeteringUnitTimestampCountNowParam.php @@ -13,10 +13,10 @@ public function isInitialized($property) : bool return array_key_exists($property, $this->initialized); } /** - * 更新方法(Update method) + * 更新方法(update method) add: 加算(addition) - sub: 減算(Subtract) - direct: 上書き(direct) + sub: 減算(subtraction) + direct: 上書き(overwrite) * * @var string */ @@ -28,10 +28,10 @@ public function isInitialized($property) : bool */ protected $count; /** - * 更新方法(Update method) + * 更新方法(update method) add: 加算(addition) - sub: 減算(Subtract) - direct: 上書き(direct) + sub: 減算(subtraction) + direct: 上書き(overwrite) * * @return string */ @@ -40,10 +40,10 @@ public function getMethod() : string return $this->method; } /** - * 更新方法(Update method) + * 更新方法(update method) add: 加算(addition) - sub: 減算(Subtract) - direct: 上書き(direct) + sub: 減算(subtraction) + direct: 上書き(overwrite) * * @param string $method * diff --git a/generated/Pricing/Model/UpdateMeteringUnitTimestampCountParam.php b/generated/Pricing/Model/UpdateMeteringUnitTimestampCountParam.php index 391f69a..5c90f30 100644 --- a/generated/Pricing/Model/UpdateMeteringUnitTimestampCountParam.php +++ b/generated/Pricing/Model/UpdateMeteringUnitTimestampCountParam.php @@ -13,10 +13,10 @@ public function isInitialized($property) : bool return array_key_exists($property, $this->initialized); } /** - * 更新方法(Update method) + * 更新方法(update method) add: 加算(addition) - sub: 減算(Subtract) - direct: 上書き(direct) + sub: 減算(subtraction) + direct: 上書き(overwrite) * * @var string */ @@ -28,10 +28,10 @@ public function isInitialized($property) : bool */ protected $count; /** - * 更新方法(Update method) + * 更新方法(update method) add: 加算(addition) - sub: 減算(Subtract) - direct: 上書き(direct) + sub: 減算(subtraction) + direct: 上書き(overwrite) * * @return string */ @@ -40,10 +40,10 @@ public function getMethod() : string return $this->method; } /** - * 更新方法(Update method) + * 更新方法(update method) add: 加算(addition) - sub: 減算(Subtract) - direct: 上書き(direct) + sub: 減算(subtraction) + direct: 上書き(overwrite) * * @param string $method * diff --git a/src/Laravel/Controllers/CallbackApiController.php b/src/Laravel/Controllers/CallbackApiController.php index 43dc2f6..cbd1a2a 100644 --- a/src/Laravel/Controllers/CallbackApiController.php +++ b/src/Laravel/Controllers/CallbackApiController.php @@ -27,7 +27,9 @@ public function index(Request $request) $client = new ApiClient(); $authApi = $client->getAuthClient(); try { - $res = $authApi->getAuthCredentials(['code' => $request->code], $authApi::FETCH_RESPONSE); + $res = $authApi->getAuthCredentials([ + 'code' => $request->code, 'auth-flow' => 'tempCodeAuth', + ], $authApi::FETCH_RESPONSE); return json_decode($res->getBody(), true); } catch (GetAuthCredentialsNotFoundException | GetAuthCredentialsInternalServerErrorException $e) { if (get_class($e) == 'GetAuthCredentialsNotFoundException') { diff --git a/src/Laravel/Controllers/CallbackController.php b/src/Laravel/Controllers/CallbackController.php index ddfea31..bf76684 100644 --- a/src/Laravel/Controllers/CallbackController.php +++ b/src/Laravel/Controllers/CallbackController.php @@ -26,7 +26,9 @@ public function index(Request $request) $client = new ApiClient; $authApiClient = $client->getAuthClient(); try { - $res = $authApiClient->getAuthCredentials(['code' => $request->code]); + $res = $authApiClient->getAuthCredentials([ + 'code' => $request->code, 'auth-flow' => 'tempCodeAuth', + ]); $idToken = $res->getIdToken(); } catch (GetAuthCredentialsNotFoundException | GetAuthCredentialsInternalServerErrorException $e) { if (get_class($e) == 'GetAuthCredentialsNotFoundException') {