Manifest-Referenz für Organisationsprofil

Für das programmgesteuerte Erstellen von Organisationsprofilen ist ein Manifest erforderlich, das in YAML (https://yaml.org/spec/) geschrieben ist. Nutzen Sie die hier bereitgestellten Informationen, um sich über die in einem Organisationsprofilmanifest verfügbaren Parameter zu informieren.

Organisationsprofilmanifest

#
# Organization profile manifest
#
title: <organization_profile_title>
description: <organization_profile_description>
contact: <organization_profile_contact>
approver_contact: <organization_profile_approver_contacts>
allowed_publishers:
  access:
      - account: account_name1
      - account: account_name2
logo: <organization_profile_logo_urn>
Copy

Felder des Organisationsprofils

Mit den Parametern im Organisationsmanifest können Sie Organisationsprofile für bestimmte organisatorische Freigabeangebote erstellen. Erforderliche und optionale Felder sind gekennzeichnet.

title (erforderlich)

Zeichenfolge. Der Titel des Organisationsprofils. Dieses Feld stellt die Domäne des Anbieters dar. Sie wird unter dem Organisations-Freigabeangebot und als Filteroption unter Providers auf einem Internal Marketplace angezeigt.

. . .
title: "Title"
. . .
Copy
description (erforderlich)

String. Eine Beschreibung für das Organisationsprofil.

. . .
description: "Description"
. . .
Copy
contact (erforderlich)

String. Die E-Mail-Adresse des Eigentümers des Organisationsprofils.

. . .
contact: "contact@snowflake.com"
. . .
Copy
approver_contact (erforderlich)

String. Die E-Mail-Adresse des Genehmigers des Organisationsprofils.

Im Folgenden finden Sie ein Beispiel für das Format:

. . .
approver_contact: "approver_contact@snowflake.com"
. . .
Copy
allowed_publishers (optional)

Die Konten, die berechtigt sind, das dem Organisationsprofil zugeordnete Freigabeangebot zu veröffentlichen. Sie müssen Folgendes mit allowed_publishers angeben:

  • access: Eine Liste der Konten, die das dem Organisationsprofil zugeordnete Freigabeangebot veröffentlichen dürfen. Um allen Konten zu erlauben, das dem Organisationsprofil zugeordnete Freigabeangebot zu veröffentlichen, verwenden Sie all_internal_accounts: "true".

Im Folgenden finden Sie ein Beispiel für das Format:

. . .
allowed_publishers:
  access:
    - account: "account_name1"
    - account: "account_name2"
. . .
Copy
logo (optional)

String. Die URN für das Symbol oder den Emoji des Organisationsprofils. Verwenden Sie das folgende Format, um ein Logo anzugeben: Logo: „urn:icon:<Name>:<Farbe>“

In der folgenden Tabelle finden Sie die verfügbaren Symbole:

Symbol

Name

Symbol

Name

../../../_images/icon_ai.png

KI

../../../_images/icon_blocks.png

Blöcke

../../../_images/icon_book.png

Buch

../../../_images/icon_calendar.png

Kalender

../../../_images/icon_classification.png

Klassifizierung

../../../_images/icon_code.png

code

../../../_images/icon_compute.png

Computing

../../../_images/icon_dataengineering.png

Data Engineering

../../../_images/icon_diamond.png

Raute

../../../_images/icon_energy.png

Energie

../../../_images/icon_environment.png

Umgebung

../../../_images/icon_forecasting.png

icon_forecasting

../../../_images/icon_gear.png

Zahnrad

../../../_images/icon_government.png

Regierung

../../../_images/icon_healthmedicine.png

Gesundheitsmedizin

../../../_images/icon_healthscience.png

Gesundheitswissenschaften

../../../_images/icon_language.png

Sprache

../../../_images/icon_legal.png

Recht

../../../_images/icon_loudspeaker.png

Lautsprecher

../../../_images/icon_machinelearning.png

maschinelles Lernen

../../../_images/icon_marketplaceinternal.png

Marktplatzintern

../../../_images/icon_package.png

Paket

../../../_images/icon_personalinfo.png

Persönl.Info

../../../_images/icon_pin.png

Stift

../../../_images/icon_pinbuilding.png

pinbuilding

../../../_images/icon_pindata.png

pindata

../../../_images/icon_pinglobe.png

pinglobe

../../../_images/icon_pinmap.png

pinmap

../../../_images/icon_public.png

öffentlich

../../../_images/icon_scale.png

Skalierung

../../../_images/icon_shieldlock.png

Sperre

../../../_images/icon_sport.png

Sport

../../../_images/icon_team.png

Team

../../../_images/icon_transportation.png

Transport

../../../_images/icon_travel.png

Reisen

../../../_images/icon_weather.png

Wetter

../../../_images/icon_writinghand.png

Schreibhand

Verfügbare Logofarben sind:

  • Standard (Grau)

  • Blau

  • Violett

  • Rosa

  • Orange

  • Aqua

Im Folgenden finden Sie ein Beispiel für das Format:

. . .
logo: "urn:icon:shieldlock:blue"
. . .
Copy