HEX
Server: Apache/2.4.65 (Ubuntu)
System: Linux ielts-store-v2 6.8.0-1036-gcp #38~22.04.1-Ubuntu SMP Thu Aug 14 01:19:18 UTC 2025 x86_64
User: root (0)
PHP: 7.2.34-54+ubuntu20.04.1+deb.sury.org+1
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,
Upload Files
File: //snap/google-cloud-cli/current/lib/surface/network_management/simulation/create.yaml
- release_tracks: [ALPHA]

  help_text:
    brief: |
      Create a simulation.
    description: |
      Create a new simulation.

    examples: |
      The following command creates a simulation where the proposed config changes are specified
      in the `PROPOSED_CONFIG_FILE` argument and the file is in tf format and
      requested simulation-type is connectivity-test.

        $ {command} --proposed-config-file=`PROPOSED_CONFIG_FILE` --file-format=tf --simulation-type=connectivity-test

      The following command creates a simulation where the proposed config changes are specified
      in the `PROPOSED_CONFIG_FILE` argument, original config is specified in `ORIGINAL_CONFIG_FILE`
      argument and both the files are in gcp format and requested simulation-type is connectivity-test.

       $ {command} --proposed-config-file=`PROPOSED_CONFIG_FILE` --original-config=`ORIGINAL_CONFIG_FILE` --file-format=gcp --simulation-type=connectivity-test

  request:
    collection: networkmanagement.projects.locations.simulations
    disable_resource_check: true
    ALPHA:
      api_version: v1alpha1
    modify_request_hooks:
    - googlecloudsdk.command_lib.network_management.simulation.hooks:SetProjectAsParent
    - googlecloudsdk.command_lib.network_management.simulation.hooks:ProcessSimulationConfigChangesFile

  arguments:
    params:
    - arg_name: proposed-config-file
      metavar: PROPOSED_CONFIG_FILE
      required: true
      help_text: |
        Path to json file containing the changes.
    - arg_name: original-config-file
      metavar: ORIGINAL_CONFIG_FILE
      help_text: |
        Path to JSON file with the original config. Required when FILE_FORMAT is gcp.
    - arg_name: file-format
      metavar: FILE_FORMAT
      required: true
      help_text: |
        Format of the proposed-config-file.
      choices:
      - arg_value: gcp
        help_text: The config change file is in gcp format.
      - arg_value: tf
        help_text: The config change file is in terraform format.
    - arg_name: simulation-type
      required: true
      help_text: |
        Type of simulation.
      choices:
      - arg_value: connectivity-test
      - arg_value: shadowed-firewall

  async:
    collection: networkmanagement.projects.locations.operations

  output:
    format: |
      table(
         response.name.basename():label=SIMULATION_ID
        )