Class Script.Builder

  • Enclosing class:
    Script

    public static class Script.Builder
    extends Object
    • Constructor Detail

      • Builder

        public Builder()
    • Method Detail

      • id

        public Script.Builder id​(String id)
        The OCID of the script.

        scriptId is mandatory for creation of SCRIPTED_BROWSER and SCRIPTED_REST monitor types. For other monitor types, it should be set to null.

        Parameters:
        id - the value to set
        Returns:
        this builder
      • displayName

        public Script.Builder displayName​(String displayName)
        Unique name that can be edited.

        The name should not contain any confidential information.

        Parameters:
        displayName - the value to set
        Returns:
        this builder
      • contentType

        public Script.Builder contentType​(ContentTypes contentType)
        Content type of the script.
        Parameters:
        contentType - the value to set
        Returns:
        this builder
      • content

        public Script.Builder content​(String content)
        The content of the script.

        It may contain custom-defined tags that can be used for setting dynamic parameters. The format to set dynamic parameters is: param nameparam valueisParamValueSecret(true/false). Param value and isParamValueSecret are optional, the default value for isParamValueSecret is false. Examples: With mandatory param name : param name With parameter name and value : param nameparam value Note that the content is valid if it matches the given content type. For example, if the content type is SIDE, then the content should be in Side script format. If the content type is JS, then the content should be in JavaScript format.

        Parameters:
        content - the value to set
        Returns:
        this builder
      • timeUploaded

        public Script.Builder timeUploaded​(Date timeUploaded)
        The time the script was uploaded.
        Parameters:
        timeUploaded - the value to set
        Returns:
        this builder
      • contentSizeInBytes

        public Script.Builder contentSizeInBytes​(Integer contentSizeInBytes)
        Size of the script content.
        Parameters:
        contentSizeInBytes - the value to set
        Returns:
        this builder
      • contentFileName

        public Script.Builder contentFileName​(String contentFileName)
        File name of the uploaded script content.
        Parameters:
        contentFileName - the value to set
        Returns:
        this builder
      • parameters

        public Script.Builder parameters​(List<ScriptParameterInfo> parameters)
        List of script parameters.

        Example: [{“scriptParameter”: {“paramName”: “userid”, “paramValue”:“testuser”, “isSecret”: false}, “isOverwritten”: false}]

        Parameters:
        parameters - the value to set
        Returns:
        this builder
      • timeCreated

        public Script.Builder timeCreated​(Date timeCreated)
        The time the resource was created, expressed in RFC 3339 timestamp format.

        Example: 2020-02-12T22:47:12.613Z

        Parameters:
        timeCreated - the value to set
        Returns:
        this builder
      • timeUpdated

        public Script.Builder timeUpdated​(Date timeUpdated)
        The time the resource was updated, expressed in RFC 3339 timestamp format.

        Example: 2020-02-13T22:47:12.613Z

        Parameters:
        timeUpdated - the value to set
        Returns:
        this builder
      • freeformTags

        public Script.Builder freeformTags​(Map<String,​String> freeformTags)
        Simple key-value pair that is applied without any predefined name, type or scope.

        Exists for cross-compatibility only. Example: {“bar-key”: “value”}

        Parameters:
        freeformTags - the value to set
        Returns:
        this builder
      • definedTags

        public Script.Builder definedTags​(Map<String,​Map<String,​Object>> definedTags)
        Defined tags for this resource.

        Each key is predefined and scoped to a namespace. Example: {“foo-namespace”: {“bar-key”: “value”}}

        Parameters:
        definedTags - the value to set
        Returns:
        this builder
      • build

        public Script build()