You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
help="Headers to pass in the HTTP requests. Can be passed multiple times.",
51
55
envvar="SCIM_CLI_HEADERS",
52
56
)
57
+
@click.option(
58
+
"-s",
59
+
"--schemas",
60
+
type=click.File(),
61
+
help="Path to a JSON file containing a list of SCIM Schemas. Those schemas will be assumed to be available on the server. If unset, they will be downloaded.",
62
+
envvar="SCIM_CLI_SCHEMAS",
63
+
)
64
+
@click.option(
65
+
"-r",
66
+
"--resource-types",
67
+
type=click.File(),
68
+
help="Path to a JSON file containing a list of SCIM ResourceType. Those resource types will be assumed to be available on the server. If unset, they will be downloaded.",
69
+
envvar="SCIM_CLI_RESOURCE_TYPES",
70
+
)
71
+
@click.option(
72
+
"-c",
73
+
"--service-provider-config",
74
+
type=click.File(),
75
+
help="Path to a JSON file containing the ServiceProviderConfig content of the server. Will be downloaded otherwise.",
0 commit comments