1.7.46. 서비스 드롭 (위로)


1.7.46.1. 방법

1.7.46.1.1. 오류

제출 실패 후 이 모델 형식이 렌더링되면 발생한 오류를 반환합니다.

{{ service.errors.name | inline_errors }}
1.7.46.1.2. name

서비스 이름을 반환합니다.

1.7.46.1.3. system_name

서비스의 시스템 이름 반환

{% case service.system_name %}
{% when 'api' %}
  API is our newest service!
{% when 'old' %}
  Unfortunately we dont allow more signups to our old service.
{% endcase %}
1.7.46.1.4. description

서비스의 설명을 반환합니다

1.7.46.1.5. 서브스크립션되었습니까?

서비스를 서브스크립션할지 여부를 반환합니다

{% if service.subscribed? %}
   <p>You already subscribed this service.</p>
{% endif %}
1.7.46.1.6. subscription

현재 로그인한 사용자가 이 서비스에 가입하는 경우 subscription(ServiceContract drop)을 반환합니다. 그렇지 않으면 Nil이 아닙니다.

{% if service.subscription %}
   Your applications for service {{ service.name }} are:
   {% for app in service.subscription.applications %}
     {{ app.name }}<br/>
   {% endfor %}
{% else %}
   <p>You are not subscribed to this.</p>
{% endif %}
1.7.46.1.7. 구독 가능?
1.7.46.1.8. subscribe_url
1.7.46.1.9. application_plans

서비스의 게시된 애플리케이션 계획을 반환합니다.

{% for service in model.services %}
  <h4>{{ service.name }} application plans:</h4>
  <dl>
  {% for application_plan in service.application_plans %}
    <dt>{{ application_plan.name }}</dt>
    <dd>{{ application_plan.system_name }}</dd>
  {% endfor %}
  </dl>
{% endfor %}
1.7.46.1.10. service_plans

서비스의 게시된 서비스 계획을 반환합니다.

<p>We offer following service plans:</p>
<dl>
{% for service in model.services %}
  {% for service_plan in service.service_plans %}
    <dt>{{ service_plan.name }}</dt>
    <dd>{{ service_plan.system_name }}</dd>
  {% endfor %}
{% endfor %}
</dl>
1.7.46.1.11. Plan

서비스의 애플리케이션 계획을 반환합니다.

1.7.46.1.12. 기능

서비스의 표시된 기능을 반환합니다.

{% if service.features.size > 0 %}
  <p>{{ service.name }} has following features:</p>
  <ul>
  {% for feature in service.features %}
    <li>{{ feature.name }}</li>
  {% endfor %}
  </ul>
{% else %}
  <p>Unfortunately, {{ service.name }} currently has no features.</p>
{% endif %}
1.7.46.1.13. apps_identifier

인증 모드 설정에 따라 OAuth 인증의 경우 'ID', 'API 키' 또는 '클라이언트 ID'를 반환합니다.

{{ service.application_key_name }}
1.7.46.1.14. backend_version
1.7.46.1.15. referrer_filters_required?
1.7.46.1.16. 메트릭

서비스의 지표를 반환합니다.

<p>On {{ service.name }} we measure following metrics:</p>
<ul>
{% for metric in service.metrics %}
  <li>{{ metric.name }}</li>
{% endfor %}
</ul>
1.7.46.1.17. 지원_이메일

서비스의 이메일 지원

Red Hat logoGithubRedditYoutubeTwitter

자세한 정보

평가판, 구매 및 판매

커뮤니티

Red Hat 문서 정보

Red Hat을 사용하는 고객은 신뢰할 수 있는 콘텐츠가 포함된 제품과 서비스를 통해 혁신하고 목표를 달성할 수 있습니다.

보다 포괄적 수용을 위한 오픈 소스 용어 교체

Red Hat은 코드, 문서, 웹 속성에서 문제가 있는 언어를 교체하기 위해 최선을 다하고 있습니다. 자세한 내용은 다음을 참조하세요.Red Hat 블로그.

Red Hat 소개

Red Hat은 기업이 핵심 데이터 센터에서 네트워크 에지에 이르기까지 플랫폼과 환경 전반에서 더 쉽게 작업할 수 있도록 강화된 솔루션을 제공합니다.

© 2024 Red Hat, Inc.