Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .agents/skills/cli-compute/references/function-deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ csdk function-deployment list --where.<field>.<op> <value> --orderBy <values>
csdk function-deployment list --limit 10 --after <cursor>
csdk function-deployment find-first --where.<field>.<op> <value>
csdk function-deployment get --id <UUID>
csdk function-deployment create --databaseId <UUID> --image <String> --namespaceId <UUID> [--annotations <JSON>] [--concurrency <Int>] [--errorCount <Int>] [--handlerName <String>] [--imageVersion <String>] [--labels <JSON>] [--lastError <String>] [--lastErrorAt <Datetime>] [--resources <JSON>] [--revision <Int>] [--scaleMax <Int>] [--scaleMin <Int>] [--serviceName <String>] [--serviceUrl <String>] [--status <String>] [--timeoutSeconds <Int>]
csdk function-deployment update --id <UUID> [--annotations <JSON>] [--concurrency <Int>] [--databaseId <UUID>] [--errorCount <Int>] [--handlerName <String>] [--image <String>] [--imageVersion <String>] [--labels <JSON>] [--lastError <String>] [--lastErrorAt <Datetime>] [--namespaceId <UUID>] [--resources <JSON>] [--revision <Int>] [--scaleMax <Int>] [--scaleMin <Int>] [--serviceName <String>] [--serviceUrl <String>] [--status <String>] [--timeoutSeconds <Int>]
csdk function-deployment create --databaseId <UUID> --image <String> --namespaceId <UUID> [--annotations <JSON>] [--concurrency <Int>] [--errorCount <Int>] [--handlerName <String>] [--imageVersion <String>] [--labels <JSON>] [--lastError <String>] [--lastErrorAt <Datetime>] [--realm <String>] [--resources <JSON>] [--revision <Int>] [--scaleMax <Int>] [--scaleMin <Int>] [--serviceName <String>] [--serviceUrl <String>] [--status <String>] [--timeoutSeconds <Int>]
csdk function-deployment update --id <UUID> [--annotations <JSON>] [--concurrency <Int>] [--databaseId <UUID>] [--errorCount <Int>] [--handlerName <String>] [--image <String>] [--imageVersion <String>] [--labels <JSON>] [--lastError <String>] [--lastErrorAt <Datetime>] [--namespaceId <UUID>] [--realm <String>] [--resources <JSON>] [--revision <Int>] [--scaleMax <Int>] [--scaleMin <Int>] [--serviceName <String>] [--serviceUrl <String>] [--status <String>] [--timeoutSeconds <Int>]
csdk function-deployment delete --id <UUID>
```

Expand Down Expand Up @@ -58,7 +58,7 @@ csdk function-deployment list --where.id.equalTo <value> --orderBy ID_ASC
### Create a functionDeployment

```bash
csdk function-deployment create --databaseId <UUID> --image <String> --namespaceId <UUID> [--annotations <JSON>] [--concurrency <Int>] [--errorCount <Int>] [--handlerName <String>] [--imageVersion <String>] [--labels <JSON>] [--lastError <String>] [--lastErrorAt <Datetime>] [--resources <JSON>] [--revision <Int>] [--scaleMax <Int>] [--scaleMin <Int>] [--serviceName <String>] [--serviceUrl <String>] [--status <String>] [--timeoutSeconds <Int>]
csdk function-deployment create --databaseId <UUID> --image <String> --namespaceId <UUID> [--annotations <JSON>] [--concurrency <Int>] [--errorCount <Int>] [--handlerName <String>] [--imageVersion <String>] [--labels <JSON>] [--lastError <String>] [--lastErrorAt <Datetime>] [--realm <String>] [--resources <JSON>] [--revision <Int>] [--scaleMax <Int>] [--scaleMin <Int>] [--serviceName <String>] [--serviceUrl <String>] [--status <String>] [--timeoutSeconds <Int>]
```

### Get a functionDeployment by id
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ csdk platform-function-deployment list --where.<field>.<op> <value> --orderBy <v
csdk platform-function-deployment list --limit 10 --after <cursor>
csdk platform-function-deployment find-first --where.<field>.<op> <value>
csdk platform-function-deployment get --id <UUID>
csdk platform-function-deployment create --image <String> --namespaceId <UUID> [--annotations <JSON>] [--concurrency <Int>] [--errorCount <Int>] [--handlerName <String>] [--imageVersion <String>] [--labels <JSON>] [--lastError <String>] [--lastErrorAt <Datetime>] [--resources <JSON>] [--revision <Int>] [--scaleMax <Int>] [--scaleMin <Int>] [--serviceName <String>] [--serviceUrl <String>] [--status <String>] [--timeoutSeconds <Int>]
csdk platform-function-deployment update --id <UUID> [--annotations <JSON>] [--concurrency <Int>] [--errorCount <Int>] [--handlerName <String>] [--image <String>] [--imageVersion <String>] [--labels <JSON>] [--lastError <String>] [--lastErrorAt <Datetime>] [--namespaceId <UUID>] [--resources <JSON>] [--revision <Int>] [--scaleMax <Int>] [--scaleMin <Int>] [--serviceName <String>] [--serviceUrl <String>] [--status <String>] [--timeoutSeconds <Int>]
csdk platform-function-deployment create --image <String> --namespaceId <UUID> [--annotations <JSON>] [--concurrency <Int>] [--errorCount <Int>] [--handlerName <String>] [--imageVersion <String>] [--labels <JSON>] [--lastError <String>] [--lastErrorAt <Datetime>] [--realm <String>] [--resources <JSON>] [--revision <Int>] [--scaleMax <Int>] [--scaleMin <Int>] [--serviceName <String>] [--serviceUrl <String>] [--status <String>] [--timeoutSeconds <Int>]
csdk platform-function-deployment update --id <UUID> [--annotations <JSON>] [--concurrency <Int>] [--errorCount <Int>] [--handlerName <String>] [--image <String>] [--imageVersion <String>] [--labels <JSON>] [--lastError <String>] [--lastErrorAt <Datetime>] [--namespaceId <UUID>] [--realm <String>] [--resources <JSON>] [--revision <Int>] [--scaleMax <Int>] [--scaleMin <Int>] [--serviceName <String>] [--serviceUrl <String>] [--status <String>] [--timeoutSeconds <Int>]
csdk platform-function-deployment delete --id <UUID>
```

Expand Down Expand Up @@ -58,7 +58,7 @@ csdk platform-function-deployment list --where.id.equalTo <value> --orderBy ID_A
### Create a platformFunctionDeployment

```bash
csdk platform-function-deployment create --image <String> --namespaceId <UUID> [--annotations <JSON>] [--concurrency <Int>] [--errorCount <Int>] [--handlerName <String>] [--imageVersion <String>] [--labels <JSON>] [--lastError <String>] [--lastErrorAt <Datetime>] [--resources <JSON>] [--revision <Int>] [--scaleMax <Int>] [--scaleMin <Int>] [--serviceName <String>] [--serviceUrl <String>] [--status <String>] [--timeoutSeconds <Int>]
csdk platform-function-deployment create --image <String> --namespaceId <UUID> [--annotations <JSON>] [--concurrency <Int>] [--errorCount <Int>] [--handlerName <String>] [--imageVersion <String>] [--labels <JSON>] [--lastError <String>] [--lastErrorAt <Datetime>] [--realm <String>] [--resources <JSON>] [--revision <Int>] [--scaleMax <Int>] [--scaleMin <Int>] [--serviceName <String>] [--serviceUrl <String>] [--status <String>] [--timeoutSeconds <Int>]
```

### Get a platformFunctionDeployment by id
Expand Down
6 changes: 3 additions & 3 deletions .agents/skills/cli-modules/references/route-module.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ csdk route-module list --where.<field>.<op> <value> --orderBy <values>
csdk route-module list --limit 10 --after <cursor>
csdk route-module find-first --where.<field>.<op> <value>
csdk route-module get --id <UUID>
csdk route-module create --databaseId <UUID> --scope <String> [--apiName <String>] [--catalogModuleId <UUID>] [--defaultPermissions <String>] [--domainModuleId <UUID>] [--entityField <String>] [--entityTableId <UUID>] [--hostnameBindingsTableId <UUID>] [--hostnameBindingsTableName <String>] [--policies <JSON>] [--prefix <String>] [--privateApiName <String>] [--privateSchemaId <UUID>] [--privateSchemaName <String>] [--provisions <JSON>] [--publicSchemaName <String>] [--resolverFunctionName <String>] [--routeBindingsTableId <UUID>] [--routeBindingsTableName <String>] [--routesTableId <UUID>] [--routesTableName <String>] [--schemaId <UUID>]
csdk route-module update --id <UUID> [--apiName <String>] [--catalogModuleId <UUID>] [--databaseId <UUID>] [--defaultPermissions <String>] [--domainModuleId <UUID>] [--entityField <String>] [--entityTableId <UUID>] [--hostnameBindingsTableId <UUID>] [--hostnameBindingsTableName <String>] [--policies <JSON>] [--prefix <String>] [--privateApiName <String>] [--privateSchemaId <UUID>] [--privateSchemaName <String>] [--provisions <JSON>] [--publicSchemaName <String>] [--resolverFunctionName <String>] [--routeBindingsTableId <UUID>] [--routeBindingsTableName <String>] [--routesTableId <UUID>] [--routesTableName <String>] [--schemaId <UUID>] [--scope <String>]
csdk route-module create --databaseId <UUID> --scope <String> [--apiName <String>] [--appLinksFunctionName <String>] [--catalogModuleId <UUID>] [--deepLinkFunctionName <String>] [--defaultPermissions <String>] [--domainModuleId <UUID>] [--entityField <String>] [--entityTableId <UUID>] [--hostnameBindingsTableId <UUID>] [--hostnameBindingsTableName <String>] [--policies <JSON>] [--prefix <String>] [--privateApiName <String>] [--privateSchemaId <UUID>] [--privateSchemaName <String>] [--provisions <JSON>] [--publicSchemaName <String>] [--resolverFunctionName <String>] [--routeBindingsTableId <UUID>] [--routeBindingsTableName <String>] [--routesTableId <UUID>] [--routesTableName <String>] [--schemaId <UUID>]
csdk route-module update --id <UUID> [--apiName <String>] [--appLinksFunctionName <String>] [--catalogModuleId <UUID>] [--databaseId <UUID>] [--deepLinkFunctionName <String>] [--defaultPermissions <String>] [--domainModuleId <UUID>] [--entityField <String>] [--entityTableId <UUID>] [--hostnameBindingsTableId <UUID>] [--hostnameBindingsTableName <String>] [--policies <JSON>] [--prefix <String>] [--privateApiName <String>] [--privateSchemaId <UUID>] [--privateSchemaName <String>] [--provisions <JSON>] [--publicSchemaName <String>] [--resolverFunctionName <String>] [--routeBindingsTableId <UUID>] [--routeBindingsTableName <String>] [--routesTableId <UUID>] [--routesTableName <String>] [--schemaId <UUID>] [--scope <String>]
csdk route-module delete --id <UUID>
```

Expand Down Expand Up @@ -58,7 +58,7 @@ csdk route-module list --where.id.equalTo <value> --orderBy ID_ASC
### Create a routeModule

```bash
csdk route-module create --databaseId <UUID> --scope <String> [--apiName <String>] [--catalogModuleId <UUID>] [--defaultPermissions <String>] [--domainModuleId <UUID>] [--entityField <String>] [--entityTableId <UUID>] [--hostnameBindingsTableId <UUID>] [--hostnameBindingsTableName <String>] [--policies <JSON>] [--prefix <String>] [--privateApiName <String>] [--privateSchemaId <UUID>] [--privateSchemaName <String>] [--provisions <JSON>] [--publicSchemaName <String>] [--resolverFunctionName <String>] [--routeBindingsTableId <UUID>] [--routeBindingsTableName <String>] [--routesTableId <UUID>] [--routesTableName <String>] [--schemaId <UUID>]
csdk route-module create --databaseId <UUID> --scope <String> [--apiName <String>] [--appLinksFunctionName <String>] [--catalogModuleId <UUID>] [--deepLinkFunctionName <String>] [--defaultPermissions <String>] [--domainModuleId <UUID>] [--entityField <String>] [--entityTableId <UUID>] [--hostnameBindingsTableId <UUID>] [--hostnameBindingsTableName <String>] [--policies <JSON>] [--prefix <String>] [--privateApiName <String>] [--privateSchemaId <UUID>] [--privateSchemaName <String>] [--provisions <JSON>] [--publicSchemaName <String>] [--resolverFunctionName <String>] [--routeBindingsTableId <UUID>] [--routeBindingsTableName <String>] [--routesTableId <UUID>] [--routesTableName <String>] [--schemaId <UUID>]
```

### Get a routeModule by id
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ Function deployment bindings — ties a handler image to a namespace for Knative
## Usage

```typescript
useFunctionDeploymentsQuery({ selection: { fields: { annotations: true, concurrency: true, createdAt: true, databaseId: true, errorCount: true, handlerName: true, id: true, image: true, imageVersion: true, labels: true, lastError: true, lastErrorAt: true, namespaceId: true, resources: true, revision: true, scaleMax: true, scaleMin: true, serviceName: true, serviceUrl: true, status: true, timeoutSeconds: true, updatedAt: true } } })
useFunctionDeploymentQuery({ id: '<UUID>', selection: { fields: { annotations: true, concurrency: true, createdAt: true, databaseId: true, errorCount: true, handlerName: true, id: true, image: true, imageVersion: true, labels: true, lastError: true, lastErrorAt: true, namespaceId: true, resources: true, revision: true, scaleMax: true, scaleMin: true, serviceName: true, serviceUrl: true, status: true, timeoutSeconds: true, updatedAt: true } } })
useFunctionDeploymentsQuery({ selection: { fields: { annotations: true, concurrency: true, createdAt: true, databaseId: true, errorCount: true, handlerName: true, id: true, image: true, imageVersion: true, labels: true, lastError: true, lastErrorAt: true, namespaceId: true, realm: true, resources: true, revision: true, scaleMax: true, scaleMin: true, serviceName: true, serviceUrl: true, status: true, timeoutSeconds: true, updatedAt: true } } })
useFunctionDeploymentQuery({ id: '<UUID>', selection: { fields: { annotations: true, concurrency: true, createdAt: true, databaseId: true, errorCount: true, handlerName: true, id: true, image: true, imageVersion: true, labels: true, lastError: true, lastErrorAt: true, namespaceId: true, realm: true, resources: true, revision: true, scaleMax: true, scaleMin: true, serviceName: true, serviceUrl: true, status: true, timeoutSeconds: true, updatedAt: true } } })
useCreateFunctionDeploymentMutation({ selection: { fields: { id: true } } })
useUpdateFunctionDeploymentMutation({ selection: { fields: { id: true } } })
useDeleteFunctionDeploymentMutation({})
Expand All @@ -20,7 +20,7 @@ useDeleteFunctionDeploymentMutation({})

```typescript
const { data, isLoading } = useFunctionDeploymentsQuery({
selection: { fields: { annotations: true, concurrency: true, createdAt: true, databaseId: true, errorCount: true, handlerName: true, id: true, image: true, imageVersion: true, labels: true, lastError: true, lastErrorAt: true, namespaceId: true, resources: true, revision: true, scaleMax: true, scaleMin: true, serviceName: true, serviceUrl: true, status: true, timeoutSeconds: true, updatedAt: true } },
selection: { fields: { annotations: true, concurrency: true, createdAt: true, databaseId: true, errorCount: true, handlerName: true, id: true, image: true, imageVersion: true, labels: true, lastError: true, lastErrorAt: true, namespaceId: true, realm: true, resources: true, revision: true, scaleMax: true, scaleMin: true, serviceName: true, serviceUrl: true, status: true, timeoutSeconds: true, updatedAt: true } },
});
```

Expand All @@ -30,5 +30,5 @@ const { data, isLoading } = useFunctionDeploymentsQuery({
const { mutate } = useCreateFunctionDeploymentMutation({
selection: { fields: { id: true } },
});
mutate({ annotations: '<JSON>', concurrency: '<Int>', databaseId: '<UUID>', errorCount: '<Int>', handlerName: '<String>', image: '<String>', imageVersion: '<String>', labels: '<JSON>', lastError: '<String>', lastErrorAt: '<Datetime>', namespaceId: '<UUID>', resources: '<JSON>', revision: '<Int>', scaleMax: '<Int>', scaleMin: '<Int>', serviceName: '<String>', serviceUrl: '<String>', status: '<String>', timeoutSeconds: '<Int>' });
mutate({ annotations: '<JSON>', concurrency: '<Int>', databaseId: '<UUID>', errorCount: '<Int>', handlerName: '<String>', image: '<String>', imageVersion: '<String>', labels: '<JSON>', lastError: '<String>', lastErrorAt: '<Datetime>', namespaceId: '<UUID>', realm: '<String>', resources: '<JSON>', revision: '<Int>', scaleMax: '<Int>', scaleMin: '<Int>', serviceName: '<String>', serviceUrl: '<String>', status: '<String>', timeoutSeconds: '<Int>' });
```
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ Function deployment bindings — ties a handler image to a namespace for Knative
## Usage

```typescript
usePlatformFunctionDeploymentsQuery({ selection: { fields: { annotations: true, concurrency: true, createdAt: true, errorCount: true, handlerName: true, id: true, image: true, imageVersion: true, labels: true, lastError: true, lastErrorAt: true, namespaceId: true, resources: true, revision: true, scaleMax: true, scaleMin: true, serviceName: true, serviceUrl: true, status: true, timeoutSeconds: true, updatedAt: true } } })
usePlatformFunctionDeploymentQuery({ id: '<UUID>', selection: { fields: { annotations: true, concurrency: true, createdAt: true, errorCount: true, handlerName: true, id: true, image: true, imageVersion: true, labels: true, lastError: true, lastErrorAt: true, namespaceId: true, resources: true, revision: true, scaleMax: true, scaleMin: true, serviceName: true, serviceUrl: true, status: true, timeoutSeconds: true, updatedAt: true } } })
usePlatformFunctionDeploymentsQuery({ selection: { fields: { annotations: true, concurrency: true, createdAt: true, errorCount: true, handlerName: true, id: true, image: true, imageVersion: true, labels: true, lastError: true, lastErrorAt: true, namespaceId: true, realm: true, resources: true, revision: true, scaleMax: true, scaleMin: true, serviceName: true, serviceUrl: true, status: true, timeoutSeconds: true, updatedAt: true } } })
usePlatformFunctionDeploymentQuery({ id: '<UUID>', selection: { fields: { annotations: true, concurrency: true, createdAt: true, errorCount: true, handlerName: true, id: true, image: true, imageVersion: true, labels: true, lastError: true, lastErrorAt: true, namespaceId: true, realm: true, resources: true, revision: true, scaleMax: true, scaleMin: true, serviceName: true, serviceUrl: true, status: true, timeoutSeconds: true, updatedAt: true } } })
useCreatePlatformFunctionDeploymentMutation({ selection: { fields: { id: true } } })
useUpdatePlatformFunctionDeploymentMutation({ selection: { fields: { id: true } } })
useDeletePlatformFunctionDeploymentMutation({})
Expand All @@ -20,7 +20,7 @@ useDeletePlatformFunctionDeploymentMutation({})

```typescript
const { data, isLoading } = usePlatformFunctionDeploymentsQuery({
selection: { fields: { annotations: true, concurrency: true, createdAt: true, errorCount: true, handlerName: true, id: true, image: true, imageVersion: true, labels: true, lastError: true, lastErrorAt: true, namespaceId: true, resources: true, revision: true, scaleMax: true, scaleMin: true, serviceName: true, serviceUrl: true, status: true, timeoutSeconds: true, updatedAt: true } },
selection: { fields: { annotations: true, concurrency: true, createdAt: true, errorCount: true, handlerName: true, id: true, image: true, imageVersion: true, labels: true, lastError: true, lastErrorAt: true, namespaceId: true, realm: true, resources: true, revision: true, scaleMax: true, scaleMin: true, serviceName: true, serviceUrl: true, status: true, timeoutSeconds: true, updatedAt: true } },
});
```

Expand All @@ -30,5 +30,5 @@ const { data, isLoading } = usePlatformFunctionDeploymentsQuery({
const { mutate } = useCreatePlatformFunctionDeploymentMutation({
selection: { fields: { id: true } },
});
mutate({ annotations: '<JSON>', concurrency: '<Int>', errorCount: '<Int>', handlerName: '<String>', image: '<String>', imageVersion: '<String>', labels: '<JSON>', lastError: '<String>', lastErrorAt: '<Datetime>', namespaceId: '<UUID>', resources: '<JSON>', revision: '<Int>', scaleMax: '<Int>', scaleMin: '<Int>', serviceName: '<String>', serviceUrl: '<String>', status: '<String>', timeoutSeconds: '<Int>' });
mutate({ annotations: '<JSON>', concurrency: '<Int>', errorCount: '<Int>', handlerName: '<String>', image: '<String>', imageVersion: '<String>', labels: '<JSON>', lastError: '<String>', lastErrorAt: '<Datetime>', namespaceId: '<UUID>', realm: '<String>', resources: '<JSON>', revision: '<Int>', scaleMax: '<Int>', scaleMin: '<Int>', serviceName: '<String>', serviceUrl: '<String>', status: '<String>', timeoutSeconds: '<Int>' });
```
Loading
Loading