Skip to content

Commit

Permalink
demisto/py3-tools:1.0.0.103307 | 0-100 | PR batch #4/4 (#35395)
Browse files Browse the repository at this point in the history
* Updated docker image to demisto/py3-tools:1.0.0.103307. PR batch #4/4

* fixes

---------

Co-authored-by: [email protected] <[email protected]>
  • Loading branch information
samuelFain and inbalapt1 authored Jul 14, 2024
1 parent 238de28 commit 239a1c5
Show file tree
Hide file tree
Showing 10 changed files with 58 additions and 44 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ configuration:
name: proxy
type: 8
required: false
description: 'Jira logs event collector integration for Cortex XSIAM.'
description: Jira logs event collector integration for Cortex XSIAM.
display: Jira Event Collector
name: Jira Event Collector
script:
commands:
- description: 'Returns a list of audit records'
- description: Returns a list of audit records
name: jira-get-events
arguments:
- description: The maximum number of incidents per fetch. Default is 1000.
Expand All @@ -51,7 +51,7 @@ script:
isfetchevents: true
type: python
subtype: python3
dockerimage: demisto/py3-tools:1.0.0.94051
dockerimage: demisto/py3-tools:1.0.0.103307
marketplaces:
- marketplacev2
fromversion: 6.5.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ configuration:
type: 9
section: Connect
- displaypassword: Client Certificate And Private Key (List of PEMs)
display: ""
display: ''
name: clientCertAndKey
required: false
section: Connect
Expand Down Expand Up @@ -175,7 +175,7 @@ script:
required: true
description: Fetches an email by message ID and returns the information in an eml file format.
name: mail-listener-get-email-as-eml
dockerimage: demisto/py3-tools:1.0.0.99035
dockerimage: demisto/py3-tools:1.0.0.103307
isfetch: true
runonce: false
script: '-'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ description: ''
display: Mimecast Event Collector
name: Mimecast Event Collector
script:
script: ""
script: ''
type: python
commands:
- arguments:
Expand All @@ -54,7 +54,7 @@ script:
required: true
description: Manual command to fetch events and display them.
name: mimecast-get-events
dockerimage: demisto/py3-tools:1.0.0.94051
dockerimage: demisto/py3-tools:1.0.0.103307
isfetchevents: true
subtype: python3
marketplaces:
Expand Down
2 changes: 1 addition & 1 deletion Packs/MongoDB/Integrations/MongoDB/MongoDB.yml
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ script:
- 'false'
description: Bulk updates entries in a collection.
name: mongodb-bulk-update
dockerimage: demisto/py3-tools:1.0.0.90842
dockerimage: demisto/py3-tools:1.0.0.103307
runonce: false
script: '-'
subtype: python3
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ script:
name: mongodb-get-keys-number
- description: Lists all incidents in the collection.
name: mongodb-list-incidents
dockerimage: demisto/py3-tools:1.0.0.91504
dockerimage: demisto/py3-tools:1.0.0.103307
runonce: false
script: '-'
type: python
Expand Down
2 changes: 1 addition & 1 deletion Packs/MongoDB/Integrations/MongoDBLog/MongoDBLog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ script:
type: String
- description: Returns the number of log entries.
name: mongodb-logs-number
dockerimage: demisto/py3-tools:1.0.0.91504
dockerimage: demisto/py3-tools:1.0.0.103307
runonce: true
script: '-'
type: python
Expand Down
28 changes: 15 additions & 13 deletions Packs/Okta/Scripts/IAMInitOktaUser/IAMInitOktaUser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,13 @@ tags:
- IAM
- Utility
- Okta
comment: |-
Generates a password and sets the password for an Okta user.
comment: 'Generates a password and sets the password for an Okta user.
Enables the account.
Sends an email to the user with the account information.
This script is running the `send-mail` command, make sure there is a mail sender integration configured.
This script is running the `send-mail` command, make sure there is a mail sender integration configured.'
enabled: true
args:
- name: pwdGenerationScript
Expand All @@ -37,31 +39,31 @@ args:
description: The subject of the email sent to IT.
- name: min_lcase
description: Minimum number of lower case characters to include in password. Used with the GeneratePassword script (leave empty if using another script).
defaultValue: "0"
defaultValue: '0'
- name: max_lcase
description: Maximum number of lower case characters to include in password. Used with the GeneratePassword script (leave empty if using another script).
defaultValue: "10"
defaultValue: '10'
- name: min_ucase
description: Minimum number of upper case characters to include in password. Used with the GeneratePassword script (leave empty if using another script).
defaultValue: "0"
defaultValue: '0'
- name: max_ucase
description: Maximum number of upper case characters to include in password. Used with the GeneratePassword script (leave empty if using another script).
defaultValue: "10"
defaultValue: '10'
- name: min_digits
description: Minimum number of digits to include in password. Used with the GeneratePassword script (leave empty if using another script).
defaultValue: "0"
defaultValue: '0'
- name: max_digits
description: Maximum number of digits to include in password. Used with the GeneratePassword script (leave empty if using another script).
defaultValue: "10"
defaultValue: '10'
- name: min_symbols
description: Minimum number of symbols to include in password. Used with the GeneratePassword script (leave empty if using another script).
defaultValue: "0"
defaultValue: '0'
- name: max_symbols
description: Maximum number of symbols to include in password. Used with the GeneratePassword script (leave empty if using another script).
defaultValue: "10"
defaultValue: '10'
- name: ZipProtectWithPassword
description: The password to protect the zip file that contains the generated password. if not provided, the generated password will be send in the body of the email.
defaultValue: ""
defaultValue: ''
- name: email_body
description: The body of the email that will be sent to the user.
- name: zip_file_name
Expand All @@ -81,7 +83,7 @@ outputs:
type: String
scripttarget: 0
subtype: python3
dockerimage: demisto/py3-tools:1.0.0.95440
dockerimage: demisto/py3-tools:1.0.0.103307
runas: DBotWeakRole
fromversion: 6.5.0
tests:
Expand Down
10 changes: 5 additions & 5 deletions Packs/OpenLDAP/Integrations/OpenLDAP/OpenLDAP.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ configuration:
required: true
type: 15
section: Connect
- additionalinfo: 'The SSL\TLS version to use in SSL or Start TLS connections types. Default is None. It is recommended to select the TLS_CLIENT option, which auto-negotiate the highest protocol version that both the client and server support, and configure the context client-side connections.'
- additionalinfo: The SSL\TLS version to use in SSL or Start TLS connections types. Default is None. It is recommended to select the TLS_CLIENT option, which auto-negotiate the highest protocol version that both the client and server support, and configure the context client-side connections.
defaultvalue: None
display: SSL Version
name: ssl_version
Expand Down Expand Up @@ -173,28 +173,28 @@ script:
name: attribute-phone
- auto: PREDEFINED
defaultValue: 'true'
description: 'Whether to return the name attribute.'
description: Whether to return the name attribute.
name: attribute-name-pull
predefined:
- 'true'
- 'false'
- auto: PREDEFINED
defaultValue: 'true'
description: 'Whether to return the mail attribute.'
description: Whether to return the mail attribute.
name: attribute-mail-pull
predefined:
- 'true'
- 'false'
- auto: PREDEFINED
defaultValue: 'false'
description: 'Whether to return the phone attribute.'
description: Whether to return the phone attribute.
name: attribute-phone-pull
predefined:
- 'true'
- 'false'
description: Performs a simple bind operation on the LDAP server and returns the authenticated user's groups.
name: ad-authenticate-and-roles
dockerimage: demisto/py3-tools:1.0.0.82746
dockerimage: demisto/py3-tools:1.0.0.103307
runonce: false
script: '-'
subtype: python3
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1369,7 +1369,7 @@ script:
default: false
- name: chained
isArray: false
description: When set to true the full CA chain is returned with the certificate. Must be used with the local CA ID.
description: When set to "true" the full CA chain is returned with the certificate. Must be used with the local CA ID.
required: false
secret: false
default: false
Expand Down Expand Up @@ -1711,7 +1711,19 @@ script:
default: false
outputs: []
- deprecated: false
description: "Create a new user in a domain (including root), or add an existing domain user to a sub-domain. Users are always created in the local, internal user database, but might have references to external identity providers.\nThe connection property is optional. If this property is specified when creating new users, it can be the name of a connection or local_account for a local user.\nThe connection property is only used in the body of the create-user request. It is not present in either request or response bodies of the other user endpoints.\nTo create a user - username is mandatory. And password is required in most cases except when certificate authentication is used and certificate subject dn is provided.\nTo enable certificate based authentication for a user, it is required to set certificate_subject_dn and add \"user_certificate\" authentication method in allowed_auth_methods. This functionality is available only for local users.\nTo assign a root domain user to a sub-domain - the users are added to the domain of the user who is logging in, and the connection property should be left empty. The user_id or username fields are the only ones that are used while adding existing users to sub-domains; all other fields are ignored.\nTo enable the two-factor authentication based on username-password and user certificate for a user, it is required to set \"certificate_subject_dn\" and add \"password_with_user_certificate\" authentication method in \"allowed_auth_methods\". For authentication, the user will require both username-password and user certificate. This functionality applies only to local users."
description: 'Create a new user in a domain (including root), or add an existing domain user to a sub-domain. Users are always created in the local, internal user database, but might have references to external identity providers.
The connection property is optional. If this property is specified when creating new users, it can be the name of a connection or local_account for a local user.
The connection property is only used in the body of the create-user request. It is not present in either request or response bodies of the other user endpoints.
To create a user - username is mandatory. And password is required in most cases except when certificate authentication is used and certificate subject dn is provided.
To enable certificate based authentication for a user, it is required to set certificate_subject_dn and add "user_certificate" authentication method in allowed_auth_methods. This functionality is available only for local users.
To assign a root domain user to a sub-domain - the users are added to the domain of the user who is logging in, and the connection property should be left empty. The user_id or username fields are the only ones that are used while adding existing users to sub-domains; all other fields are ignored.
To enable the two-factor authentication based on username-password and user certificate for a user, it is required to set "certificate_subject_dn" and add "password_with_user_certificate" authentication method in "allowed_auth_methods". For authentication, the user will require both username-password and user certificate. This functionality applies only to local users.'
name: ciphertrust-user-create
arguments:
- name: name
Expand Down Expand Up @@ -1746,7 +1758,7 @@ script:
default: false
- name: allowed_auth_methods
isArray: true
description: 'A comma-separated list of login authentication methods allowed to the user. Default value - "password". Password Authentication is allowed by default. Setting it to none, i.e., "none", means no authentication method is allowed to the user. If both enable_cert_auth and allowed_auth_methods are provided in the request, enable_cert_auth is ignored. Setting it to "password_with_user_certificate", means two-factor authentication is enabled for the user. The user will require both username-password and user_certificate for authentication. This property does not control login behavior for users in admin group.'
description: A comma-separated list of login authentication methods allowed to the user. Default value - "password". Password Authentication is allowed by default. Setting it to none, i.e., "none", means no authentication method is allowed to the user. If both enable_cert_auth and allowed_auth_methods are provided in the request, enable_cert_auth is ignored. Setting it to "password_with_user_certificate", means two-factor authentication is enabled for the user. The user will require both username-password and user_certificate for authentication. This property does not control login behavior for users in admin group.
required: false
secret: false
default: false
Expand All @@ -1758,7 +1770,7 @@ script:
auto: PREDEFINED
- name: allowed_client_types
isArray: true
description: "A comma-separated list of client types that can authenticate using the user's credentials. Default value - \"unregistered,public,confidential\" i.e., all clients can authenticate the user using user's credentials. Setting it to none, \"none\", authenticate the user using user's credentials. Setting it to none, \"none\", means no client can authenticate this user, which effectively means no one can login into this user This property does not control login behavior for users in admin group."
description: A comma-separated list of client types that can authenticate using the user's credentials. Default value - "unregistered,public,confidential" i.e., all clients can authenticate the user using user's credentials. Setting it to none, "none", authenticate the user using user's credentials. Setting it to none, "none", means no client can authenticate this user, which effectively means no one can login into this user This property does not control login behavior for users in admin group.
required: false
secret: false
default: false
Expand Down Expand Up @@ -2047,7 +2059,7 @@ script:
auto: PREDEFINED
- name: allowed_auth_methods
isArray: true
description: 'List of login authentication methods allowed to the user. Setting it to none, i.e., "none", means no authentication method is allowed to the user. If both enable_cert_auth and allowed_auth_methods are provided in the request, enable_cert_auth is ignored. Setting it to "password_with_user_certificate", means two-factor authentication is enabled for the user. The user will require both username-password and user_certificate for authentication. User cannot have "password" or "user_certificate" with "password_with_user_certificate" in allowed_auth_methods. This property does not control login behavior for users in admin group.'
description: List of login authentication methods allowed to the user. Setting it to none, i.e., "none", means no authentication method is allowed to the user. If both enable_cert_auth and allowed_auth_methods are provided in the request, enable_cert_auth is ignored. Setting it to "password_with_user_certificate", means two-factor authentication is enabled for the user. The user will require both username-password and user_certificate for authentication. User cannot have "password" or "user_certificate" with "password_with_user_certificate" in allowed_auth_methods. This property does not control login behavior for users in admin group.
required: false
secret: false
default: false
Expand All @@ -2059,7 +2071,7 @@ script:
auto: PREDEFINED
- name: allowed_client_types
isArray: true
description: "A comma-separated list of client types that can authenticate using the user's credentials. Setting it to none, i.e., \"none\", means no client can authenticate this user, which effectively means no one can login into this user. This property does not control login behavior for users in admin group."
description: A comma-separated list of client types that can authenticate using the user's credentials. Setting it to none, i.e., "none", means no client can authenticate this user, which effectively means no one can login into this user. This property does not control login behavior for users in admin group.
required: false
secret: false
default: false
Expand Down Expand Up @@ -2197,13 +2209,13 @@ script:
default: false
- name: username
isArray: false
description: The users username.
description: The user's username.
required: false
secret: false
default: false
- name: email
isArray: false
description: The users email.
description: The user's email.
required: false
secret: false
default: false
Expand All @@ -2221,7 +2233,7 @@ script:
default: false
- name: auth_domain_name
isArray: false
description: The users auth domain.
description: The user's auth domain.
required: false
secret: false
default: false
Expand Down Expand Up @@ -2381,7 +2393,7 @@ script:
script: '-'
type: python
subtype: python3
dockerimage: demisto/py3-tools:1.0.0.99035
dockerimage: demisto/py3-tools:1.0.0.103307
feed: false
isfetch: false
runonce: false
Expand Down
12 changes: 6 additions & 6 deletions Packs/Vertica/Integrations/Vertica/Vertica.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,22 @@ description: Analytic database management software
configuration:
- display: Host (myhost.example.com)
name: url
defaultvalue: ""
defaultvalue: ''
type: 0
required: true
- display: Database
name: database (mydb)
defaultvalue: ""
defaultvalue: ''
type: 0
required: true
- display: Username
name: credentials
defaultvalue: ""
defaultvalue: ''
type: 9
required: true
- display: Port
name: port
defaultvalue: "5433"
defaultvalue: '5433'
type: 0
required: false
script:
Expand All @@ -37,7 +37,7 @@ script:
description: A SQL query to perform on the Vertica database.
- name: limit
description: The maximum number of results to be returned from the query. (Use 0 for all results)
defaultValue: "50"
defaultValue: '50'
outputs:
- contextPath: Vertica.Query
description: The original query.
Expand All @@ -46,7 +46,7 @@ script:
description: The content of rows.
type: string
description: Executes a query on the Vertica database.
dockerimage: demisto/py3-tools:1.0.0.91504
dockerimage: demisto/py3-tools:1.0.0.103307
subtype: python3
tests:
- Vertica Test
Expand Down

0 comments on commit 239a1c5

Please sign in to comment.