OS Config API . projects . locations . osPolicyAssignments

Instance Methods

operations()

Returns the operations Resource.

close()

Close httplib2 connections.

create(parent, body=None, osPolicyAssignmentId=None, x__xgafv=None)

Create an OS policy assignment. This method also creates the first revision of the OS policy assignment. This method returns a long running operation (LRO) that contains the rollout details. The rollout can be cancelled by cancelling the LRO. For more information, see [Method: projects.locations.osPolicyAssignments.operations.cancel](https://cloud.google.com/compute/docs/osconfig/rest/v1/projects.locations.osPolicyAssignments.operations/cancel).

delete(name, x__xgafv=None)

Delete the OS policy assignment. This method creates a new revision of the OS policy assignment. This method returns a long running operation (LRO) that contains the rollout details. The rollout can be cancelled by cancelling the LRO. If the LRO completes and is not cancelled, all revisions associated with the OS policy assignment are deleted. For more information, see [Method: projects.locations.osPolicyAssignments.operations.cancel](https://cloud.google.com/compute/docs/osconfig/rest/v1/projects.locations.osPolicyAssignments.operations/cancel).

get(name, x__xgafv=None)

Retrieve an existing OS policy assignment. This method always returns the latest revision. In order to retrieve a previous revision of the assignment, also provide the revision ID in the `name` parameter.

list(parent, pageSize=None, pageToken=None, x__xgafv=None)

List the OS policy assignments under the parent resource. For each OS policy assignment, the latest revision is returned.

listRevisions(name, pageSize=None, pageToken=None, x__xgafv=None)

List the OS policy assignment revisions for a given OS policy assignment.

listRevisions_next()

Retrieves the next page of results.

list_next()

Retrieves the next page of results.

patch(name, body=None, updateMask=None, x__xgafv=None)

Update an existing OS policy assignment. This method creates a new revision of the OS policy assignment. This method returns a long running operation (LRO) that contains the rollout details. The rollout can be cancelled by cancelling the LRO. For more information, see [Method: projects.locations.osPolicyAssignments.operations.cancel](https://cloud.google.com/compute/docs/osconfig/rest/v1/projects.locations.osPolicyAssignments.operations/cancel).

Method Details

close()
Close httplib2 connections.
create(parent, body=None, osPolicyAssignmentId=None, x__xgafv=None)
Create an OS policy assignment. This method also creates the first revision of the OS policy assignment. This method returns a long running operation (LRO) that contains the rollout details. The rollout can be cancelled by cancelling the LRO. For more information, see [Method: projects.locations.osPolicyAssignments.operations.cancel](https://cloud.google.com/compute/docs/osconfig/rest/v1/projects.locations.osPolicyAssignments.operations/cancel).

Args:
  parent: string, Required. The parent resource name in the form: projects/{project}/locations/{location}. Note: Specify the zone of your VMs as the location. (required)
  body: object, The request body.
    The object takes the form of:

{ # OS policy assignment is an API resource that is used to apply a set of OS policies to a dynamically targeted group of Compute Engine VM instances. An OS policy is used to define the desired state configuration for a Compute Engine VM instance through a set of configuration resources that provide capabilities such as installing or removing software packages, or executing a script. For more information about the OS policy resource definitions and examples, see [OS policy and OS policy assignment](https://cloud.google.com/compute/docs/os-configuration-management/working-with-os-policies).
  "baseline": True or False, # Output only. Indicates that this revision has been successfully rolled out in this zone and new VMs will be assigned OS policies from this revision. For a given OS policy assignment, there is only one revision with a value of `true` for this field.
  "deleted": True or False, # Output only. Indicates that this revision deletes the OS policy assignment.
  "description": "A String", # OS policy assignment description. Length of the description is limited to 1024 characters.
  "etag": "A String", # The etag for this OS policy assignment. If this is provided on update, it must match the server's etag.
  "instanceFilter": { # Filters to select target VMs for an assignment. If more than one filter criteria is specified below, a VM will be selected if and only if it satisfies all of them. # Required. Filter to select VMs.
    "all": True or False, # Target all VMs in the project. If true, no other criteria is permitted.
    "exclusionLabels": [ # List of label sets used for VM exclusion. If the list has more than one label set, the VM is excluded if any of the label sets are applicable for the VM.
      { # Message representing label set. * A label is a key value pair set for a VM. * A LabelSet is a set of labels. * Labels within a LabelSet are ANDed. In other words, a LabelSet is applicable for a VM only if it matches all the labels in the LabelSet. * Example: A LabelSet with 2 labels: `env=prod` and `type=webserver` will only be applicable for those VMs with both labels present.
        "labels": { # Labels are identified by key/value pairs in this map. A VM should contain all the key/value pairs specified in this map to be selected.
          "a_key": "A String",
        },
      },
    ],
    "inclusionLabels": [ # List of label sets used for VM inclusion. If the list has more than one `LabelSet`, the VM is included if any of the label sets are applicable for the VM.
      { # Message representing label set. * A label is a key value pair set for a VM. * A LabelSet is a set of labels. * Labels within a LabelSet are ANDed. In other words, a LabelSet is applicable for a VM only if it matches all the labels in the LabelSet. * Example: A LabelSet with 2 labels: `env=prod` and `type=webserver` will only be applicable for those VMs with both labels present.
        "labels": { # Labels are identified by key/value pairs in this map. A VM should contain all the key/value pairs specified in this map to be selected.
          "a_key": "A String",
        },
      },
    ],
    "inventories": [ # List of inventories to select VMs. A VM is selected if its inventory data matches at least one of the following inventories.
      { # VM inventory details.
        "osShortName": "A String", # Required. The OS short name
        "osVersion": "A String", # The OS version Prefix matches are supported if asterisk(*) is provided as the last character. For example, to match all versions with a major version of `7`, specify the following value for this field `7.*` An empty string matches all OS versions.
      },
    ],
  },
  "name": "A String", # Resource name. Format: `projects/{project_number}/locations/{location}/osPolicyAssignments/{os_policy_assignment_id}` This field is ignored when you create an OS policy assignment.
  "osPolicies": [ # Required. List of OS policies to be applied to the VMs.
    { # An OS policy defines the desired state configuration for a VM.
      "allowNoResourceGroupMatch": True or False, # This flag determines the OS policy compliance status when none of the resource groups within the policy are applicable for a VM. Set this value to `true` if the policy needs to be reported as compliant even if the policy has nothing to validate or enforce.
      "description": "A String", # Policy description. Length of the description is limited to 1024 characters.
      "id": "A String", # Required. The id of the OS policy with the following restrictions: * Must contain only lowercase letters, numbers, and hyphens. * Must start with a letter. * Must be between 1-63 characters. * Must end with a number or a letter. * Must be unique within the assignment.
      "mode": "A String", # Required. Policy mode
      "resourceGroups": [ # Required. List of resource groups for the policy. For a particular VM, resource groups are evaluated in the order specified and the first resource group that is applicable is selected and the rest are ignored. If none of the resource groups are applicable for a VM, the VM is considered to be non-compliant w.r.t this policy. This behavior can be toggled by the flag `allow_no_resource_group_match`
        { # Resource groups provide a mechanism to group OS policy resources. Resource groups enable OS policy authors to create a single OS policy to be applied to VMs running different operating Systems. When the OS policy is applied to a target VM, the appropriate resource group within the OS policy is selected based on the `OSFilter` specified within the resource group.
          "inventoryFilters": [ # List of inventory filters for the resource group. The resources in this resource group are applied to the target VM if it satisfies at least one of the following inventory filters. For example, to apply this resource group to VMs running either `RHEL` or `CentOS` operating systems, specify 2 items for the list with following values: inventory_filters[0].os_short_name='rhel' and inventory_filters[1].os_short_name='centos' If the list is empty, this resource group will be applied to the target VM unconditionally.
            { # Filtering criteria to select VMs based on inventory details.
              "osShortName": "A String", # Required. The OS short name
              "osVersion": "A String", # The OS version Prefix matches are supported if asterisk(*) is provided as the last character. For example, to match all versions with a major version of `7`, specify the following value for this field `7.*` An empty string matches all OS versions.
            },
          ],
          "resources": [ # Required. List of resources configured for this resource group. The resources are executed in the exact order specified here.
            { # An OS policy resource is used to define the desired state configuration and provides a specific functionality like installing/removing packages, executing a script etc. The system ensures that resources are always in their desired state by taking necessary actions if they have drifted from their desired state.
              "exec": { # A resource that allows executing scripts on the VM. The `ExecResource` has 2 stages: `validate` and `enforce` and both stages accept a script as an argument to execute. When the `ExecResource` is applied by the agent, it first executes the script in the `validate` stage. The `validate` stage can signal that the `ExecResource` is already in the desired state by returning an exit code of `100`. If the `ExecResource` is not in the desired state, it should return an exit code of `101`. Any other exit code returned by this stage is considered an error. If the `ExecResource` is not in the desired state based on the exit code from the `validate` stage, the agent proceeds to execute the script from the `enforce` stage. If the `ExecResource` is already in the desired state, the `enforce` stage will not be run. Similar to `validate` stage, the `enforce` stage should return an exit code of `100` to indicate that the resource in now in its desired state. Any other exit code is considered an error. NOTE: An exit code of `100` was chosen over `0` (and `101` vs `1`) to have an explicit indicator of `in desired state`, `not in desired state` and errors. Because, for example, Powershell will always return an exit code of `0` unless an `exit` statement is provided in the script. So, for reasons of consistency and being explicit, exit codes `100` and `101` were chosen. # Exec resource
                "enforce": { # A file or script to execute. # What to run to bring this resource into the desired state. An exit code of 100 indicates "success", any other exit code indicates a failure running enforce.
                  "args": [ # Optional arguments to pass to the source during execution.
                    "A String",
                  ],
                  "file": { # A remote or local file. # A remote or local file.
                    "allowInsecure": True or False, # Defaults to false. When false, files are subject to validations based on the file type: Remote: A checksum must be specified. Cloud Storage: An object generation number must be specified.
                    "gcs": { # Specifies a file available as a Cloud Storage Object. # A Cloud Storage object.
                      "bucket": "A String", # Required. Bucket of the Cloud Storage object.
                      "generation": "A String", # Generation number of the Cloud Storage object.
                      "object": "A String", # Required. Name of the Cloud Storage object.
                    },
                    "localPath": "A String", # A local path within the VM to use.
                    "remote": { # Specifies a file available via some URI. # A generic remote file.
                      "sha256Checksum": "A String", # SHA256 checksum of the remote file.
                      "uri": "A String", # Required. URI from which to fetch the object. It should contain both the protocol and path following the format `{protocol}://{location}`.
                    },
                  },
                  "interpreter": "A String", # Required. The script interpreter to use.
                  "outputFilePath": "A String", # Only recorded for enforce Exec. Path to an output file (that is created by this Exec) whose content will be recorded in OSPolicyResourceCompliance after a successful run. Absence or failure to read this file will result in this ExecResource being non-compliant. Output file size is limited to 100K bytes.
                  "script": "A String", # An inline script. The size of the script is limited to 32KiB.
                },
                "validate": { # A file or script to execute. # Required. What to run to validate this resource is in the desired state. An exit code of 100 indicates "in desired state", and exit code of 101 indicates "not in desired state". Any other exit code indicates a failure running validate.
                  "args": [ # Optional arguments to pass to the source during execution.
                    "A String",
                  ],
                  "file": { # A remote or local file. # A remote or local file.
                    "allowInsecure": True or False, # Defaults to false. When false, files are subject to validations based on the file type: Remote: A checksum must be specified. Cloud Storage: An object generation number must be specified.
                    "gcs": { # Specifies a file available as a Cloud Storage Object. # A Cloud Storage object.
                      "bucket": "A String", # Required. Bucket of the Cloud Storage object.
                      "generation": "A String", # Generation number of the Cloud Storage object.
                      "object": "A String", # Required. Name of the Cloud Storage object.
                    },
                    "localPath": "A String", # A local path within the VM to use.
                    "remote": { # Specifies a file available via some URI. # A generic remote file.
                      "sha256Checksum": "A String", # SHA256 checksum of the remote file.
                      "uri": "A String", # Required. URI from which to fetch the object. It should contain both the protocol and path following the format `{protocol}://{location}`.
                    },
                  },
                  "interpreter": "A String", # Required. The script interpreter to use.
                  "outputFilePath": "A String", # Only recorded for enforce Exec. Path to an output file (that is created by this Exec) whose content will be recorded in OSPolicyResourceCompliance after a successful run. Absence or failure to read this file will result in this ExecResource being non-compliant. Output file size is limited to 100K bytes.
                  "script": "A String", # An inline script. The size of the script is limited to 32KiB.
                },
              },
              "file": { # A resource that manages the state of a file. # File resource
                "content": "A String", # A a file with this content. The size of the content is limited to 32KiB.
                "file": { # A remote or local file. # A remote or local source.
                  "allowInsecure": True or False, # Defaults to false. When false, files are subject to validations based on the file type: Remote: A checksum must be specified. Cloud Storage: An object generation number must be specified.
                  "gcs": { # Specifies a file available as a Cloud Storage Object. # A Cloud Storage object.
                    "bucket": "A String", # Required. Bucket of the Cloud Storage object.
                    "generation": "A String", # Generation number of the Cloud Storage object.
                    "object": "A String", # Required. Name of the Cloud Storage object.
                  },
                  "localPath": "A String", # A local path within the VM to use.
                  "remote": { # Specifies a file available via some URI. # A generic remote file.
                    "sha256Checksum": "A String", # SHA256 checksum of the remote file.
                    "uri": "A String", # Required. URI from which to fetch the object. It should contain both the protocol and path following the format `{protocol}://{location}`.
                  },
                },
                "path": "A String", # Required. The absolute path of the file within the VM.
                "permissions": "A String", # Consists of three octal digits which represent, in order, the permissions of the owner, group, and other users for the file (similarly to the numeric mode used in the linux chmod utility). Each digit represents a three bit number with the 4 bit corresponding to the read permissions, the 2 bit corresponds to the write bit, and the one bit corresponds to the execute permission. Default behavior is 755. Below are some examples of permissions and their associated values: read, write, and execute: 7 read and execute: 5 read and write: 6 read only: 4
                "state": "A String", # Required. Desired state of the file.
              },
              "id": "A String", # Required. The id of the resource with the following restrictions: * Must contain only lowercase letters, numbers, and hyphens. * Must start with a letter. * Must be between 1-63 characters. * Must end with a number or a letter. * Must be unique within the OS policy.
              "pkg": { # A resource that manages a system package. # Package resource
                "apt": { # A package managed by APT. - install: `apt-get update && apt-get -y install [name]` - remove: `apt-get -y remove [name]` # A package managed by Apt.
                  "name": "A String", # Required. Package name.
                },
                "deb": { # A deb package file. dpkg packages only support INSTALLED state. # A deb package file.
                  "pullDeps": True or False, # Whether dependencies should also be installed. - install when false: `dpkg -i package` - install when true: `apt-get update && apt-get -y install package.deb`
                  "source": { # A remote or local file. # Required. A deb package.
                    "allowInsecure": True or False, # Defaults to false. When false, files are subject to validations based on the file type: Remote: A checksum must be specified. Cloud Storage: An object generation number must be specified.
                    "gcs": { # Specifies a file available as a Cloud Storage Object. # A Cloud Storage object.
                      "bucket": "A String", # Required. Bucket of the Cloud Storage object.
                      "generation": "A String", # Generation number of the Cloud Storage object.
                      "object": "A String", # Required. Name of the Cloud Storage object.
                    },
                    "localPath": "A String", # A local path within the VM to use.
                    "remote": { # Specifies a file available via some URI. # A generic remote file.
                      "sha256Checksum": "A String", # SHA256 checksum of the remote file.
                      "uri": "A String", # Required. URI from which to fetch the object. It should contain both the protocol and path following the format `{protocol}://{location}`.
                    },
                  },
                },
                "desiredState": "A String", # Required. The desired state the agent should maintain for this package.
                "googet": { # A package managed by GooGet. - install: `googet -noconfirm install package` - remove: `googet -noconfirm remove package` # A package managed by GooGet.
                  "name": "A String", # Required. Package name.
                },
                "msi": { # An MSI package. MSI packages only support INSTALLED state. # An MSI package.
                  "properties": [ # Additional properties to use during installation. This should be in the format of Property=Setting. Appended to the defaults of `ACTION=INSTALL REBOOT=ReallySuppress`.
                    "A String",
                  ],
                  "source": { # A remote or local file. # Required. The MSI package.
                    "allowInsecure": True or False, # Defaults to false. When false, files are subject to validations based on the file type: Remote: A checksum must be specified. Cloud Storage: An object generation number must be specified.
                    "gcs": { # Specifies a file available as a Cloud Storage Object. # A Cloud Storage object.
                      "bucket": "A String", # Required. Bucket of the Cloud Storage object.
                      "generation": "A String", # Generation number of the Cloud Storage object.
                      "object": "A String", # Required. Name of the Cloud Storage object.
                    },
                    "localPath": "A String", # A local path within the VM to use.
                    "remote": { # Specifies a file available via some URI. # A generic remote file.
                      "sha256Checksum": "A String", # SHA256 checksum of the remote file.
                      "uri": "A String", # Required. URI from which to fetch the object. It should contain both the protocol and path following the format `{protocol}://{location}`.
                    },
                  },
                },
                "rpm": { # An RPM package file. RPM packages only support INSTALLED state. # An rpm package file.
                  "pullDeps": True or False, # Whether dependencies should also be installed. - install when false: `rpm --upgrade --replacepkgs package.rpm` - install when true: `yum -y install package.rpm` or `zypper -y install package.rpm`
                  "source": { # A remote or local file. # Required. An rpm package.
                    "allowInsecure": True or False, # Defaults to false. When false, files are subject to validations based on the file type: Remote: A checksum must be specified. Cloud Storage: An object generation number must be specified.
                    "gcs": { # Specifies a file available as a Cloud Storage Object. # A Cloud Storage object.
                      "bucket": "A String", # Required. Bucket of the Cloud Storage object.
                      "generation": "A String", # Generation number of the Cloud Storage object.
                      "object": "A String", # Required. Name of the Cloud Storage object.
                    },
                    "localPath": "A String", # A local path within the VM to use.
                    "remote": { # Specifies a file available via some URI. # A generic remote file.
                      "sha256Checksum": "A String", # SHA256 checksum of the remote file.
                      "uri": "A String", # Required. URI from which to fetch the object. It should contain both the protocol and path following the format `{protocol}://{location}`.
                    },
                  },
                },
                "yum": { # A package managed by YUM. - install: `yum -y install package` - remove: `yum -y remove package` # A package managed by YUM.
                  "name": "A String", # Required. Package name.
                },
                "zypper": { # A package managed by Zypper. - install: `zypper -y install package` - remove: `zypper -y rm package` # A package managed by Zypper.
                  "name": "A String", # Required. Package name.
                },
              },
              "repository": { # A resource that manages a package repository. # Package repository resource
                "apt": { # Represents a single apt package repository. These will be added to a repo file that will be managed at `/etc/apt/sources.list.d/google_osconfig.list`. # An Apt Repository.
                  "archiveType": "A String", # Required. Type of archive files in this repository.
                  "components": [ # Required. List of components for this repository. Must contain at least one item.
                    "A String",
                  ],
                  "distribution": "A String", # Required. Distribution of this repository.
                  "gpgKey": "A String", # URI of the key file for this repository. The agent maintains a keyring at `/etc/apt/trusted.gpg.d/osconfig_agent_managed.gpg`.
                  "uri": "A String", # Required. URI for this repository.
                },
                "goo": { # Represents a Goo package repository. These are added to a repo file that is managed at `C:/ProgramData/GooGet/repos/google_osconfig.repo`. # A Goo Repository.
                  "name": "A String", # Required. The name of the repository.
                  "url": "A String", # Required. The url of the repository.
                },
                "yum": { # Represents a single yum package repository. These are added to a repo file that is managed at `/etc/yum.repos.d/google_osconfig.repo`. # A Yum Repository.
                  "baseUrl": "A String", # Required. The location of the repository directory.
                  "displayName": "A String", # The display name of the repository.
                  "gpgKeys": [ # URIs of GPG keys.
                    "A String",
                  ],
                  "id": "A String", # Required. A one word, unique name for this repository. This is the `repo id` in the yum config file and also the `display_name` if `display_name` is omitted. This id is also used as the unique identifier when checking for resource conflicts.
                },
                "zypper": { # Represents a single zypper package repository. These are added to a repo file that is managed at `/etc/zypp/repos.d/google_osconfig.repo`. # A Zypper Repository.
                  "baseUrl": "A String", # Required. The location of the repository directory.
                  "displayName": "A String", # The display name of the repository.
                  "gpgKeys": [ # URIs of GPG keys.
                    "A String",
                  ],
                  "id": "A String", # Required. A one word, unique name for this repository. This is the `repo id` in the zypper config file and also the `display_name` if `display_name` is omitted. This id is also used as the unique identifier when checking for GuestPolicy conflicts.
                },
              },
            },
          ],
        },
      ],
    },
  ],
  "reconciling": True or False, # Output only. Indicates that reconciliation is in progress for the revision. This value is `true` when the `rollout_state` is one of: * IN_PROGRESS * CANCELLING
  "revisionCreateTime": "A String", # Output only. The timestamp that the revision was created.
  "revisionId": "A String", # Output only. The assignment revision ID A new revision is committed whenever a rollout is triggered for a OS policy assignment
  "rollout": { # Message to configure the rollout at the zonal level for the OS policy assignment. # Required. Rollout to deploy the OS policy assignment. A rollout is triggered in the following situations: 1) OSPolicyAssignment is created. 2) OSPolicyAssignment is updated and the update contains changes to one of the following fields: - instance_filter - os_policies 3) OSPolicyAssignment is deleted.
    "disruptionBudget": { # Message encapsulating a value that can be either absolute ("fixed") or relative ("percent") to a value. # Required. The maximum number (or percentage) of VMs per zone to disrupt at any given moment.
      "fixed": 42, # Specifies a fixed value.
      "percent": 42, # Specifies the relative value defined as a percentage, which will be multiplied by a reference value.
    },
    "minWaitDuration": "A String", # Required. This determines the minimum duration of time to wait after the configuration changes are applied through the current rollout. A VM continues to count towards the `disruption_budget` at least until this duration of time has passed after configuration changes are applied.
  },
  "rolloutState": "A String", # Output only. OS policy assignment rollout state
  "uid": "A String", # Output only. Server generated unique id for the OS policy assignment resource.
}

  osPolicyAssignmentId: string, Required. The logical name of the OS policy assignment in the project with the following restrictions: * Must contain only lowercase letters, numbers, and hyphens. * Must start with a letter. * Must be between 1-63 characters. * Must end with a number or a letter. * Must be unique within the project.
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # This resource represents a long-running operation that is the result of a network API call.
  "done": True or False, # If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available.
  "error": { # The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). # The error result of the operation in case of failure or cancellation.
    "code": 42, # The status code, which should be an enum value of google.rpc.Code.
    "details": [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
      {
        "a_key": "", # Properties of the object. Contains field @type with type URL.
      },
    ],
    "message": "A String", # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
  },
  "metadata": { # Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such metadata. Any method that returns a long-running operation should document the metadata type, if any.
    "a_key": "", # Properties of the object. Contains field @type with type URL.
  },
  "name": "A String", # The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the `name` should be a resource name ending with `operations/{unique_id}`.
  "response": { # The normal, successful response of the operation. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.
    "a_key": "", # Properties of the object. Contains field @type with type URL.
  },
}
delete(name, x__xgafv=None)
Delete the OS policy assignment. This method creates a new revision of the OS policy assignment. This method returns a long running operation (LRO) that contains the rollout details. The rollout can be cancelled by cancelling the LRO. If the LRO completes and is not cancelled, all revisions associated with the OS policy assignment are deleted. For more information, see [Method: projects.locations.osPolicyAssignments.operations.cancel](https://cloud.google.com/compute/docs/osconfig/rest/v1/projects.locations.osPolicyAssignments.operations/cancel).

Args:
  name: string, Required. The name of the OS policy assignment to be deleted (required)
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # This resource represents a long-running operation that is the result of a network API call.
  "done": True or False, # If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available.
  "error": { # The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). # The error result of the operation in case of failure or cancellation.
    "code": 42, # The status code, which should be an enum value of google.rpc.Code.
    "details": [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
      {
        "a_key": "", # Properties of the object. Contains field @type with type URL.
      },
    ],
    "message": "A String", # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
  },
  "metadata": { # Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such metadata. Any method that returns a long-running operation should document the metadata type, if any.
    "a_key": "", # Properties of the object. Contains field @type with type URL.
  },
  "name": "A String", # The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the `name` should be a resource name ending with `operations/{unique_id}`.
  "response": { # The normal, successful response of the operation. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.
    "a_key": "", # Properties of the object. Contains field @type with type URL.
  },
}
get(name, x__xgafv=None)
Retrieve an existing OS policy assignment. This method always returns the latest revision. In order to retrieve a previous revision of the assignment, also provide the revision ID in the `name` parameter.

Args:
  name: string, Required. The resource name of OS policy assignment. Format: `projects/{project}/locations/{location}/osPolicyAssignments/{os_policy_assignment}@{revisionId}` (required)
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # OS policy assignment is an API resource that is used to apply a set of OS policies to a dynamically targeted group of Compute Engine VM instances. An OS policy is used to define the desired state configuration for a Compute Engine VM instance through a set of configuration resources that provide capabilities such as installing or removing software packages, or executing a script. For more information about the OS policy resource definitions and examples, see [OS policy and OS policy assignment](https://cloud.google.com/compute/docs/os-configuration-management/working-with-os-policies).
  "baseline": True or False, # Output only. Indicates that this revision has been successfully rolled out in this zone and new VMs will be assigned OS policies from this revision. For a given OS policy assignment, there is only one revision with a value of `true` for this field.
  "deleted": True or False, # Output only. Indicates that this revision deletes the OS policy assignment.
  "description": "A String", # OS policy assignment description. Length of the description is limited to 1024 characters.
  "etag": "A String", # The etag for this OS policy assignment. If this is provided on update, it must match the server's etag.
  "instanceFilter": { # Filters to select target VMs for an assignment. If more than one filter criteria is specified below, a VM will be selected if and only if it satisfies all of them. # Required. Filter to select VMs.
    "all": True or False, # Target all VMs in the project. If true, no other criteria is permitted.
    "exclusionLabels": [ # List of label sets used for VM exclusion. If the list has more than one label set, the VM is excluded if any of the label sets are applicable for the VM.
      { # Message representing label set. * A label is a key value pair set for a VM. * A LabelSet is a set of labels. * Labels within a LabelSet are ANDed. In other words, a LabelSet is applicable for a VM only if it matches all the labels in the LabelSet. * Example: A LabelSet with 2 labels: `env=prod` and `type=webserver` will only be applicable for those VMs with both labels present.
        "labels": { # Labels are identified by key/value pairs in this map. A VM should contain all the key/value pairs specified in this map to be selected.
          "a_key": "A String",
        },
      },
    ],
    "inclusionLabels": [ # List of label sets used for VM inclusion. If the list has more than one `LabelSet`, the VM is included if any of the label sets are applicable for the VM.
      { # Message representing label set. * A label is a key value pair set for a VM. * A LabelSet is a set of labels. * Labels within a LabelSet are ANDed. In other words, a LabelSet is applicable for a VM only if it matches all the labels in the LabelSet. * Example: A LabelSet with 2 labels: `env=prod` and `type=webserver` will only be applicable for those VMs with both labels present.
        "labels": { # Labels are identified by key/value pairs in this map. A VM should contain all the key/value pairs specified in this map to be selected.
          "a_key": "A String",
        },
      },
    ],
    "inventories": [ # List of inventories to select VMs. A VM is selected if its inventory data matches at least one of the following inventories.
      { # VM inventory details.
        "osShortName": "A String", # Required. The OS short name
        "osVersion": "A String", # The OS version Prefix matches are supported if asterisk(*) is provided as the last character. For example, to match all versions with a major version of `7`, specify the following value for this field `7.*` An empty string matches all OS versions.
      },
    ],
  },
  "name": "A String", # Resource name. Format: `projects/{project_number}/locations/{location}/osPolicyAssignments/{os_policy_assignment_id}` This field is ignored when you create an OS policy assignment.
  "osPolicies": [ # Required. List of OS policies to be applied to the VMs.
    { # An OS policy defines the desired state configuration for a VM.
      "allowNoResourceGroupMatch": True or False, # This flag determines the OS policy compliance status when none of the resource groups within the policy are applicable for a VM. Set this value to `true` if the policy needs to be reported as compliant even if the policy has nothing to validate or enforce.
      "description": "A String", # Policy description. Length of the description is limited to 1024 characters.
      "id": "A String", # Required. The id of the OS policy with the following restrictions: * Must contain only lowercase letters, numbers, and hyphens. * Must start with a letter. * Must be between 1-63 characters. * Must end with a number or a letter. * Must be unique within the assignment.
      "mode": "A String", # Required. Policy mode
      "resourceGroups": [ # Required. List of resource groups for the policy. For a particular VM, resource groups are evaluated in the order specified and the first resource group that is applicable is selected and the rest are ignored. If none of the resource groups are applicable for a VM, the VM is considered to be non-compliant w.r.t this policy. This behavior can be toggled by the flag `allow_no_resource_group_match`
        { # Resource groups provide a mechanism to group OS policy resources. Resource groups enable OS policy authors to create a single OS policy to be applied to VMs running different operating Systems. When the OS policy is applied to a target VM, the appropriate resource group within the OS policy is selected based on the `OSFilter` specified within the resource group.
          "inventoryFilters": [ # List of inventory filters for the resource group. The resources in this resource group are applied to the target VM if it satisfies at least one of the following inventory filters. For example, to apply this resource group to VMs running either `RHEL` or `CentOS` operating systems, specify 2 items for the list with following values: inventory_filters[0].os_short_name='rhel' and inventory_filters[1].os_short_name='centos' If the list is empty, this resource group will be applied to the target VM unconditionally.
            { # Filtering criteria to select VMs based on inventory details.
              "osShortName": "A String", # Required. The OS short name
              "osVersion": "A String", # The OS version Prefix matches are supported if asterisk(*) is provided as the last character. For example, to match all versions with a major version of `7`, specify the following value for this field `7.*` An empty string matches all OS versions.
            },
          ],
          "resources": [ # Required. List of resources configured for this resource group. The resources are executed in the exact order specified here.
            { # An OS policy resource is used to define the desired state configuration and provides a specific functionality like installing/removing packages, executing a script etc. The system ensures that resources are always in their desired state by taking necessary actions if they have drifted from their desired state.
              "exec": { # A resource that allows executing scripts on the VM. The `ExecResource` has 2 stages: `validate` and `enforce` and both stages accept a script as an argument to execute. When the `ExecResource` is applied by the agent, it first executes the script in the `validate` stage. The `validate` stage can signal that the `ExecResource` is already in the desired state by returning an exit code of `100`. If the `ExecResource` is not in the desired state, it should return an exit code of `101`. Any other exit code returned by this stage is considered an error. If the `ExecResource` is not in the desired state based on the exit code from the `validate` stage, the agent proceeds to execute the script from the `enforce` stage. If the `ExecResource` is already in the desired state, the `enforce` stage will not be run. Similar to `validate` stage, the `enforce` stage should return an exit code of `100` to indicate that the resource in now in its desired state. Any other exit code is considered an error. NOTE: An exit code of `100` was chosen over `0` (and `101` vs `1`) to have an explicit indicator of `in desired state`, `not in desired state` and errors. Because, for example, Powershell will always return an exit code of `0` unless an `exit` statement is provided in the script. So, for reasons of consistency and being explicit, exit codes `100` and `101` were chosen. # Exec resource
                "enforce": { # A file or script to execute. # What to run to bring this resource into the desired state. An exit code of 100 indicates "success", any other exit code indicates a failure running enforce.
                  "args": [ # Optional arguments to pass to the source during execution.
                    "A String",
                  ],
                  "file": { # A remote or local file. # A remote or local file.
                    "allowInsecure": True or False, # Defaults to false. When false, files are subject to validations based on the file type: Remote: A checksum must be specified. Cloud Storage: An object generation number must be specified.
                    "gcs": { # Specifies a file available as a Cloud Storage Object. # A Cloud Storage object.
                      "bucket": "A String", # Required. Bucket of the Cloud Storage object.
                      "generation": "A String", # Generation number of the Cloud Storage object.
                      "object": "A String", # Required. Name of the Cloud Storage object.
                    },
                    "localPath": "A String", # A local path within the VM to use.
                    "remote": { # Specifies a file available via some URI. # A generic remote file.
                      "sha256Checksum": "A String", # SHA256 checksum of the remote file.
                      "uri": "A String", # Required. URI from which to fetch the object. It should contain both the protocol and path following the format `{protocol}://{location}`.
                    },
                  },
                  "interpreter": "A String", # Required. The script interpreter to use.
                  "outputFilePath": "A String", # Only recorded for enforce Exec. Path to an output file (that is created by this Exec) whose content will be recorded in OSPolicyResourceCompliance after a successful run. Absence or failure to read this file will result in this ExecResource being non-compliant. Output file size is limited to 100K bytes.
                  "script": "A String", # An inline script. The size of the script is limited to 32KiB.
                },
                "validate": { # A file or script to execute. # Required. What to run to validate this resource is in the desired state. An exit code of 100 indicates "in desired state", and exit code of 101 indicates "not in desired state". Any other exit code indicates a failure running validate.
                  "args": [ # Optional arguments to pass to the source during execution.
                    "A String",
                  ],
                  "file": { # A remote or local file. # A remote or local file.
                    "allowInsecure": True or False, # Defaults to false. When false, files are subject to validations based on the file type: Remote: A checksum must be specified. Cloud Storage: An object generation number must be specified.
                    "gcs": { # Specifies a file available as a Cloud Storage Object. # A Cloud Storage object.
                      "bucket": "A String", # Required. Bucket of the Cloud Storage object.
                      "generation": "A String", # Generation number of the Cloud Storage object.
                      "object": "A String", # Required. Name of the Cloud Storage object.
                    },
                    "localPath": "A String", # A local path within the VM to use.
                    "remote": { # Specifies a file available via some URI. # A generic remote file.
                      "sha256Checksum": "A String", # SHA256 checksum of the remote file.
                      "uri": "A String", # Required. URI from which to fetch the object. It should contain both the protocol and path following the format `{protocol}://{location}`.
                    },
                  },
                  "interpreter": "A String", # Required. The script interpreter to use.
                  "outputFilePath": "A String", # Only recorded for enforce Exec. Path to an output file (that is created by this Exec) whose content will be recorded in OSPolicyResourceCompliance after a successful run. Absence or failure to read this file will result in this ExecResource being non-compliant. Output file size is limited to 100K bytes.
                  "script": "A String", # An inline script. The size of the script is limited to 32KiB.
                },
              },
              "file": { # A resource that manages the state of a file. # File resource
                "content": "A String", # A a file with this content. The size of the content is limited to 32KiB.
                "file": { # A remote or local file. # A remote or local source.
                  "allowInsecure": True or False, # Defaults to false. When false, files are subject to validations based on the file type: Remote: A checksum must be specified. Cloud Storage: An object generation number must be specified.
                  "gcs": { # Specifies a file available as a Cloud Storage Object. # A Cloud Storage object.
                    "bucket": "A String", # Required. Bucket of the Cloud Storage object.
                    "generation": "A String", # Generation number of the Cloud Storage object.
                    "object": "A String", # Required. Name of the Cloud Storage object.
                  },
                  "localPath": "A String", # A local path within the VM to use.
                  "remote": { # Specifies a file available via some URI. # A generic remote file.
                    "sha256Checksum": "A String", # SHA256 checksum of the remote file.
                    "uri": "A String", # Required. URI from which to fetch the object. It should contain both the protocol and path following the format `{protocol}://{location}`.
                  },
                },
                "path": "A String", # Required. The absolute path of the file within the VM.
                "permissions": "A String", # Consists of three octal digits which represent, in order, the permissions of the owner, group, and other users for the file (similarly to the numeric mode used in the linux chmod utility). Each digit represents a three bit number with the 4 bit corresponding to the read permissions, the 2 bit corresponds to the write bit, and the one bit corresponds to the execute permission. Default behavior is 755. Below are some examples of permissions and their associated values: read, write, and execute: 7 read and execute: 5 read and write: 6 read only: 4
                "state": "A String", # Required. Desired state of the file.
              },
              "id": "A String", # Required. The id of the resource with the following restrictions: * Must contain only lowercase letters, numbers, and hyphens. * Must start with a letter. * Must be between 1-63 characters. * Must end with a number or a letter. * Must be unique within the OS policy.
              "pkg": { # A resource that manages a system package. # Package resource
                "apt": { # A package managed by APT. - install: `apt-get update && apt-get -y install [name]` - remove: `apt-get -y remove [name]` # A package managed by Apt.
                  "name": "A String", # Required. Package name.
                },
                "deb": { # A deb package file. dpkg packages only support INSTALLED state. # A deb package file.
                  "pullDeps": True or False, # Whether dependencies should also be installed. - install when false: `dpkg -i package` - install when true: `apt-get update && apt-get -y install package.deb`
                  "source": { # A remote or local file. # Required. A deb package.
                    "allowInsecure": True or False, # Defaults to false. When false, files are subject to validations based on the file type: Remote: A checksum must be specified. Cloud Storage: An object generation number must be specified.
                    "gcs": { # Specifies a file available as a Cloud Storage Object. # A Cloud Storage object.
                      "bucket": "A String", # Required. Bucket of the Cloud Storage object.
                      "generation": "A String", # Generation number of the Cloud Storage object.
                      "object": "A String", # Required. Name of the Cloud Storage object.
                    },
                    "localPath": "A String", # A local path within the VM to use.
                    "remote": { # Specifies a file available via some URI. # A generic remote file.
                      "sha256Checksum": "A String", # SHA256 checksum of the remote file.
                      "uri": "A String", # Required. URI from which to fetch the object. It should contain both the protocol and path following the format `{protocol}://{location}`.
                    },
                  },
                },
                "desiredState": "A String", # Required. The desired state the agent should maintain for this package.
                "googet": { # A package managed by GooGet. - install: `googet -noconfirm install package` - remove: `googet -noconfirm remove package` # A package managed by GooGet.
                  "name": "A String", # Required. Package name.
                },
                "msi": { # An MSI package. MSI packages only support INSTALLED state. # An MSI package.
                  "properties": [ # Additional properties to use during installation. This should be in the format of Property=Setting. Appended to the defaults of `ACTION=INSTALL REBOOT=ReallySuppress`.
                    "A String",
                  ],
                  "source": { # A remote or local file. # Required. The MSI package.
                    "allowInsecure": True or False, # Defaults to false. When false, files are subject to validations based on the file type: Remote: A checksum must be specified. Cloud Storage: An object generation number must be specified.
                    "gcs": { # Specifies a file available as a Cloud Storage Object. # A Cloud Storage object.
                      "bucket": "A String", # Required. Bucket of the Cloud Storage object.
                      "generation": "A String", # Generation number of the Cloud Storage object.
                      "object": "A String", # Required. Name of the Cloud Storage object.
                    },
                    "localPath": "A String", # A local path within the VM to use.
                    "remote": { # Specifies a file available via some URI. # A generic remote file.
                      "sha256Checksum": "A String", # SHA256 checksum of the remote file.
                      "uri": "A String", # Required. URI from which to fetch the object. It should contain both the protocol and path following the format `{protocol}://{location}`.
                    },
                  },
                },
                "rpm": { # An RPM package file. RPM packages only support INSTALLED state. # An rpm package file.
                  "pullDeps": True or False, # Whether dependencies should also be installed. - install when false: `rpm --upgrade --replacepkgs package.rpm` - install when true: `yum -y install package.rpm` or `zypper -y install package.rpm`
                  "source": { # A remote or local file. # Required. An rpm package.
                    "allowInsecure": True or False, # Defaults to false. When false, files are subject to validations based on the file type: Remote: A checksum must be specified. Cloud Storage: An object generation number must be specified.
                    "gcs": { # Specifies a file available as a Cloud Storage Object. # A Cloud Storage object.
                      "bucket": "A String", # Required. Bucket of the Cloud Storage object.
                      "generation": "A String", # Generation number of the Cloud Storage object.
                      "object": "A String", # Required. Name of the Cloud Storage object.
                    },
                    "localPath": "A String", # A local path within the VM to use.
                    "remote": { # Specifies a file available via some URI. # A generic remote file.
                      "sha256Checksum": "A String", # SHA256 checksum of the remote file.
                      "uri": "A String", # Required. URI from which to fetch the object. It should contain both the protocol and path following the format `{protocol}://{location}`.
                    },
                  },
                },
                "yum": { # A package managed by YUM. - install: `yum -y install package` - remove: `yum -y remove package` # A package managed by YUM.
                  "name": "A String", # Required. Package name.
                },
                "zypper": { # A package managed by Zypper. - install: `zypper -y install package` - remove: `zypper -y rm package` # A package managed by Zypper.
                  "name": "A String", # Required. Package name.
                },
              },
              "repository": { # A resource that manages a package repository. # Package repository resource
                "apt": { # Represents a single apt package repository. These will be added to a repo file that will be managed at `/etc/apt/sources.list.d/google_osconfig.list`. # An Apt Repository.
                  "archiveType": "A String", # Required. Type of archive files in this repository.
                  "components": [ # Required. List of components for this repository. Must contain at least one item.
                    "A String",
                  ],
                  "distribution": "A String", # Required. Distribution of this repository.
                  "gpgKey": "A String", # URI of the key file for this repository. The agent maintains a keyring at `/etc/apt/trusted.gpg.d/osconfig_agent_managed.gpg`.
                  "uri": "A String", # Required. URI for this repository.
                },
                "goo": { # Represents a Goo package repository. These are added to a repo file that is managed at `C:/ProgramData/GooGet/repos/google_osconfig.repo`. # A Goo Repository.
                  "name": "A String", # Required. The name of the repository.
                  "url": "A String", # Required. The url of the repository.
                },
                "yum": { # Represents a single yum package repository. These are added to a repo file that is managed at `/etc/yum.repos.d/google_osconfig.repo`. # A Yum Repository.
                  "baseUrl": "A String", # Required. The location of the repository directory.
                  "displayName": "A String", # The display name of the repository.
                  "gpgKeys": [ # URIs of GPG keys.
                    "A String",
                  ],
                  "id": "A String", # Required. A one word, unique name for this repository. This is the `repo id` in the yum config file and also the `display_name` if `display_name` is omitted. This id is also used as the unique identifier when checking for resource conflicts.
                },
                "zypper": { # Represents a single zypper package repository. These are added to a repo file that is managed at `/etc/zypp/repos.d/google_osconfig.repo`. # A Zypper Repository.
                  "baseUrl": "A String", # Required. The location of the repository directory.
                  "displayName": "A String", # The display name of the repository.
                  "gpgKeys": [ # URIs of GPG keys.
                    "A String",
                  ],
                  "id": "A String", # Required. A one word, unique name for this repository. This is the `repo id` in the zypper config file and also the `display_name` if `display_name` is omitted. This id is also used as the unique identifier when checking for GuestPolicy conflicts.
                },
              },
            },
          ],
        },
      ],
    },
  ],
  "reconciling": True or False, # Output only. Indicates that reconciliation is in progress for the revision. This value is `true` when the `rollout_state` is one of: * IN_PROGRESS * CANCELLING
  "revisionCreateTime": "A String", # Output only. The timestamp that the revision was created.
  "revisionId": "A String", # Output only. The assignment revision ID A new revision is committed whenever a rollout is triggered for a OS policy assignment
  "rollout": { # Message to configure the rollout at the zonal level for the OS policy assignment. # Required. Rollout to deploy the OS policy assignment. A rollout is triggered in the following situations: 1) OSPolicyAssignment is created. 2) OSPolicyAssignment is updated and the update contains changes to one of the following fields: - instance_filter - os_policies 3) OSPolicyAssignment is deleted.
    "disruptionBudget": { # Message encapsulating a value that can be either absolute ("fixed") or relative ("percent") to a value. # Required. The maximum number (or percentage) of VMs per zone to disrupt at any given moment.
      "fixed": 42, # Specifies a fixed value.
      "percent": 42, # Specifies the relative value defined as a percentage, which will be multiplied by a reference value.
    },
    "minWaitDuration": "A String", # Required. This determines the minimum duration of time to wait after the configuration changes are applied through the current rollout. A VM continues to count towards the `disruption_budget` at least until this duration of time has passed after configuration changes are applied.
  },
  "rolloutState": "A String", # Output only. OS policy assignment rollout state
  "uid": "A String", # Output only. Server generated unique id for the OS policy assignment resource.
}
list(parent, pageSize=None, pageToken=None, x__xgafv=None)
List the OS policy assignments under the parent resource. For each OS policy assignment, the latest revision is returned.

Args:
  parent: string, Required. The parent resource name. (required)
  pageSize: integer, The maximum number of assignments to return.
  pageToken: string, A pagination token returned from a previous call to `ListOSPolicyAssignments` that indicates where this listing should continue from.
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # A response message for listing all assignments under given parent.
  "nextPageToken": "A String", # The pagination token to retrieve the next page of OS policy assignments.
  "osPolicyAssignments": [ # The list of assignments
    { # OS policy assignment is an API resource that is used to apply a set of OS policies to a dynamically targeted group of Compute Engine VM instances. An OS policy is used to define the desired state configuration for a Compute Engine VM instance through a set of configuration resources that provide capabilities such as installing or removing software packages, or executing a script. For more information about the OS policy resource definitions and examples, see [OS policy and OS policy assignment](https://cloud.google.com/compute/docs/os-configuration-management/working-with-os-policies).
      "baseline": True or False, # Output only. Indicates that this revision has been successfully rolled out in this zone and new VMs will be assigned OS policies from this revision. For a given OS policy assignment, there is only one revision with a value of `true` for this field.
      "deleted": True or False, # Output only. Indicates that this revision deletes the OS policy assignment.
      "description": "A String", # OS policy assignment description. Length of the description is limited to 1024 characters.
      "etag": "A String", # The etag for this OS policy assignment. If this is provided on update, it must match the server's etag.
      "instanceFilter": { # Filters to select target VMs for an assignment. If more than one filter criteria is specified below, a VM will be selected if and only if it satisfies all of them. # Required. Filter to select VMs.
        "all": True or False, # Target all VMs in the project. If true, no other criteria is permitted.
        "exclusionLabels": [ # List of label sets used for VM exclusion. If the list has more than one label set, the VM is excluded if any of the label sets are applicable for the VM.
          { # Message representing label set. * A label is a key value pair set for a VM. * A LabelSet is a set of labels. * Labels within a LabelSet are ANDed. In other words, a LabelSet is applicable for a VM only if it matches all the labels in the LabelSet. * Example: A LabelSet with 2 labels: `env=prod` and `type=webserver` will only be applicable for those VMs with both labels present.
            "labels": { # Labels are identified by key/value pairs in this map. A VM should contain all the key/value pairs specified in this map to be selected.
              "a_key": "A String",
            },
          },
        ],
        "inclusionLabels": [ # List of label sets used for VM inclusion. If the list has more than one `LabelSet`, the VM is included if any of the label sets are applicable for the VM.
          { # Message representing label set. * A label is a key value pair set for a VM. * A LabelSet is a set of labels. * Labels within a LabelSet are ANDed. In other words, a LabelSet is applicable for a VM only if it matches all the labels in the LabelSet. * Example: A LabelSet with 2 labels: `env=prod` and `type=webserver` will only be applicable for those VMs with both labels present.
            "labels": { # Labels are identified by key/value pairs in this map. A VM should contain all the key/value pairs specified in this map to be selected.
              "a_key": "A String",
            },
          },
        ],
        "inventories": [ # List of inventories to select VMs. A VM is selected if its inventory data matches at least one of the following inventories.
          { # VM inventory details.
            "osShortName": "A String", # Required. The OS short name
            "osVersion": "A String", # The OS version Prefix matches are supported if asterisk(*) is provided as the last character. For example, to match all versions with a major version of `7`, specify the following value for this field `7.*` An empty string matches all OS versions.
          },
        ],
      },
      "name": "A String", # Resource name. Format: `projects/{project_number}/locations/{location}/osPolicyAssignments/{os_policy_assignment_id}` This field is ignored when you create an OS policy assignment.
      "osPolicies": [ # Required. List of OS policies to be applied to the VMs.
        { # An OS policy defines the desired state configuration for a VM.
          "allowNoResourceGroupMatch": True or False, # This flag determines the OS policy compliance status when none of the resource groups within the policy are applicable for a VM. Set this value to `true` if the policy needs to be reported as compliant even if the policy has nothing to validate or enforce.
          "description": "A String", # Policy description. Length of the description is limited to 1024 characters.
          "id": "A String", # Required. The id of the OS policy with the following restrictions: * Must contain only lowercase letters, numbers, and hyphens. * Must start with a letter. * Must be between 1-63 characters. * Must end with a number or a letter. * Must be unique within the assignment.
          "mode": "A String", # Required. Policy mode
          "resourceGroups": [ # Required. List of resource groups for the policy. For a particular VM, resource groups are evaluated in the order specified and the first resource group that is applicable is selected and the rest are ignored. If none of the resource groups are applicable for a VM, the VM is considered to be non-compliant w.r.t this policy. This behavior can be toggled by the flag `allow_no_resource_group_match`
            { # Resource groups provide a mechanism to group OS policy resources. Resource groups enable OS policy authors to create a single OS policy to be applied to VMs running different operating Systems. When the OS policy is applied to a target VM, the appropriate resource group within the OS policy is selected based on the `OSFilter` specified within the resource group.
              "inventoryFilters": [ # List of inventory filters for the resource group. The resources in this resource group are applied to the target VM if it satisfies at least one of the following inventory filters. For example, to apply this resource group to VMs running either `RHEL` or `CentOS` operating systems, specify 2 items for the list with following values: inventory_filters[0].os_short_name='rhel' and inventory_filters[1].os_short_name='centos' If the list is empty, this resource group will be applied to the target VM unconditionally.
                { # Filtering criteria to select VMs based on inventory details.
                  "osShortName": "A String", # Required. The OS short name
                  "osVersion": "A String", # The OS version Prefix matches are supported if asterisk(*) is provided as the last character. For example, to match all versions with a major version of `7`, specify the following value for this field `7.*` An empty string matches all OS versions.
                },
              ],
              "resources": [ # Required. List of resources configured for this resource group. The resources are executed in the exact order specified here.
                { # An OS policy resource is used to define the desired state configuration and provides a specific functionality like installing/removing packages, executing a script etc. The system ensures that resources are always in their desired state by taking necessary actions if they have drifted from their desired state.
                  "exec": { # A resource that allows executing scripts on the VM. The `ExecResource` has 2 stages: `validate` and `enforce` and both stages accept a script as an argument to execute. When the `ExecResource` is applied by the agent, it first executes the script in the `validate` stage. The `validate` stage can signal that the `ExecResource` is already in the desired state by returning an exit code of `100`. If the `ExecResource` is not in the desired state, it should return an exit code of `101`. Any other exit code returned by this stage is considered an error. If the `ExecResource` is not in the desired state based on the exit code from the `validate` stage, the agent proceeds to execute the script from the `enforce` stage. If the `ExecResource` is already in the desired state, the `enforce` stage will not be run. Similar to `validate` stage, the `enforce` stage should return an exit code of `100` to indicate that the resource in now in its desired state. Any other exit code is considered an error. NOTE: An exit code of `100` was chosen over `0` (and `101` vs `1`) to have an explicit indicator of `in desired state`, `not in desired state` and errors. Because, for example, Powershell will always return an exit code of `0` unless an `exit` statement is provided in the script. So, for reasons of consistency and being explicit, exit codes `100` and `101` were chosen. # Exec resource
                    "enforce": { # A file or script to execute. # What to run to bring this resource into the desired state. An exit code of 100 indicates "success", any other exit code indicates a failure running enforce.
                      "args": [ # Optional arguments to pass to the source during execution.
                        "A String",
                      ],
                      "file": { # A remote or local file. # A remote or local file.
                        "allowInsecure": True or False, # Defaults to false. When false, files are subject to validations based on the file type: Remote: A checksum must be specified. Cloud Storage: An object generation number must be specified.
                        "gcs": { # Specifies a file available as a Cloud Storage Object. # A Cloud Storage object.
                          "bucket": "A String", # Required. Bucket of the Cloud Storage object.
                          "generation": "A String", # Generation number of the Cloud Storage object.
                          "object": "A String", # Required. Name of the Cloud Storage object.
                        },
                        "localPath": "A String", # A local path within the VM to use.
                        "remote": { # Specifies a file available via some URI. # A generic remote file.
                          "sha256Checksum": "A String", # SHA256 checksum of the remote file.
                          "uri": "A String", # Required. URI from which to fetch the object. It should contain both the protocol and path following the format `{protocol}://{location}`.
                        },
                      },
                      "interpreter": "A String", # Required. The script interpreter to use.
                      "outputFilePath": "A String", # Only recorded for enforce Exec. Path to an output file (that is created by this Exec) whose content will be recorded in OSPolicyResourceCompliance after a successful run. Absence or failure to read this file will result in this ExecResource being non-compliant. Output file size is limited to 100K bytes.
                      "script": "A String", # An inline script. The size of the script is limited to 32KiB.
                    },
                    "validate": { # A file or script to execute. # Required. What to run to validate this resource is in the desired state. An exit code of 100 indicates "in desired state", and exit code of 101 indicates "not in desired state". Any other exit code indicates a failure running validate.
                      "args": [ # Optional arguments to pass to the source during execution.
                        "A String",
                      ],
                      "file": { # A remote or local file. # A remote or local file.
                        "allowInsecure": True or False, # Defaults to false. When false, files are subject to validations based on the file type: Remote: A checksum must be specified. Cloud Storage: An object generation number must be specified.
                        "gcs": { # Specifies a file available as a Cloud Storage Object. # A Cloud Storage object.
                          "bucket": "A String", # Required. Bucket of the Cloud Storage object.
                          "generation": "A String", # Generation number of the Cloud Storage object.
                          "object": "A String", # Required. Name of the Cloud Storage object.
                        },
                        "localPath": "A String", # A local path within the VM to use.
                        "remote": { # Specifies a file available via some URI. # A generic remote file.
                          "sha256Checksum": "A String", # SHA256 checksum of the remote file.
                          "uri": "A String", # Required. URI from which to fetch the object. It should contain both the protocol and path following the format `{protocol}://{location}`.
                        },
                      },
                      "interpreter": "A String", # Required. The script interpreter to use.
                      "outputFilePath": "A String", # Only recorded for enforce Exec. Path to an output file (that is created by this Exec) whose content will be recorded in OSPolicyResourceCompliance after a successful run. Absence or failure to read this file will result in this ExecResource being non-compliant. Output file size is limited to 100K bytes.
                      "script": "A String", # An inline script. The size of the script is limited to 32KiB.
                    },
                  },
                  "file": { # A resource that manages the state of a file. # File resource
                    "content": "A String", # A a file with this content. The size of the content is limited to 32KiB.
                    "file": { # A remote or local file. # A remote or local source.
                      "allowInsecure": True or False, # Defaults to false. When false, files are subject to validations based on the file type: Remote: A checksum must be specified. Cloud Storage: An object generation number must be specified.
                      "gcs": { # Specifies a file available as a Cloud Storage Object. # A Cloud Storage object.
                        "bucket": "A String", # Required. Bucket of the Cloud Storage object.
                        "generation": "A String", # Generation number of the Cloud Storage object.
                        "object": "A String", # Required. Name of the Cloud Storage object.
                      },
                      "localPath": "A String", # A local path within the VM to use.
                      "remote": { # Specifies a file available via some URI. # A generic remote file.
                        "sha256Checksum": "A String", # SHA256 checksum of the remote file.
                        "uri": "A String", # Required. URI from which to fetch the object. It should contain both the protocol and path following the format `{protocol}://{location}`.
                      },
                    },
                    "path": "A String", # Required. The absolute path of the file within the VM.
                    "permissions": "A String", # Consists of three octal digits which represent, in order, the permissions of the owner, group, and other users for the file (similarly to the numeric mode used in the linux chmod utility). Each digit represents a three bit number with the 4 bit corresponding to the read permissions, the 2 bit corresponds to the write bit, and the one bit corresponds to the execute permission. Default behavior is 755. Below are some examples of permissions and their associated values: read, write, and execute: 7 read and execute: 5 read and write: 6 read only: 4
                    "state": "A String", # Required. Desired state of the file.
                  },
                  "id": "A String", # Required. The id of the resource with the following restrictions: * Must contain only lowercase letters, numbers, and hyphens. * Must start with a letter. * Must be between 1-63 characters. * Must end with a number or a letter. * Must be unique within the OS policy.
                  "pkg": { # A resource that manages a system package. # Package resource
                    "apt": { # A package managed by APT. - install: `apt-get update && apt-get -y install [name]` - remove: `apt-get -y remove [name]` # A package managed by Apt.
                      "name": "A String", # Required. Package name.
                    },
                    "deb": { # A deb package file. dpkg packages only support INSTALLED state. # A deb package file.
                      "pullDeps": True or False, # Whether dependencies should also be installed. - install when false: `dpkg -i package` - install when true: `apt-get update && apt-get -y install package.deb`
                      "source": { # A remote or local file. # Required. A deb package.
                        "allowInsecure": True or False, # Defaults to false. When false, files are subject to validations based on the file type: Remote: A checksum must be specified. Cloud Storage: An object generation number must be specified.
                        "gcs": { # Specifies a file available as a Cloud Storage Object. # A Cloud Storage object.
                          "bucket": "A String", # Required. Bucket of the Cloud Storage object.
                          "generation": "A String", # Generation number of the Cloud Storage object.
                          "object": "A String", # Required. Name of the Cloud Storage object.
                        },
                        "localPath": "A String", # A local path within the VM to use.
                        "remote": { # Specifies a file available via some URI. # A generic remote file.
                          "sha256Checksum": "A String", # SHA256 checksum of the remote file.
                          "uri": "A String", # Required. URI from which to fetch the object. It should contain both the protocol and path following the format `{protocol}://{location}`.
                        },
                      },
                    },
                    "desiredState": "A String", # Required. The desired state the agent should maintain for this package.
                    "googet": { # A package managed by GooGet. - install: `googet -noconfirm install package` - remove: `googet -noconfirm remove package` # A package managed by GooGet.
                      "name": "A String", # Required. Package name.
                    },
                    "msi": { # An MSI package. MSI packages only support INSTALLED state. # An MSI package.
                      "properties": [ # Additional properties to use during installation. This should be in the format of Property=Setting. Appended to the defaults of `ACTION=INSTALL REBOOT=ReallySuppress`.
                        "A String",
                      ],
                      "source": { # A remote or local file. # Required. The MSI package.
                        "allowInsecure": True or False, # Defaults to false. When false, files are subject to validations based on the file type: Remote: A checksum must be specified. Cloud Storage: An object generation number must be specified.
                        "gcs": { # Specifies a file available as a Cloud Storage Object. # A Cloud Storage object.
                          "bucket": "A String", # Required. Bucket of the Cloud Storage object.
                          "generation": "A String", # Generation number of the Cloud Storage object.
                          "object": "A String", # Required. Name of the Cloud Storage object.
                        },
                        "localPath": "A String", # A local path within the VM to use.
                        "remote": { # Specifies a file available via some URI. # A generic remote file.
                          "sha256Checksum": "A String", # SHA256 checksum of the remote file.
                          "uri": "A String", # Required. URI from which to fetch the object. It should contain both the protocol and path following the format `{protocol}://{location}`.
                        },
                      },
                    },
                    "rpm": { # An RPM package file. RPM packages only support INSTALLED state. # An rpm package file.
                      "pullDeps": True or False, # Whether dependencies should also be installed. - install when false: `rpm --upgrade --replacepkgs package.rpm` - install when true: `yum -y install package.rpm` or `zypper -y install package.rpm`
                      "source": { # A remote or local file. # Required. An rpm package.
                        "allowInsecure": True or False, # Defaults to false. When false, files are subject to validations based on the file type: Remote: A checksum must be specified. Cloud Storage: An object generation number must be specified.
                        "gcs": { # Specifies a file available as a Cloud Storage Object. # A Cloud Storage object.
                          "bucket": "A String", # Required. Bucket of the Cloud Storage object.
                          "generation": "A String", # Generation number of the Cloud Storage object.
                          "object": "A String", # Required. Name of the Cloud Storage object.
                        },
                        "localPath": "A String", # A local path within the VM to use.
                        "remote": { # Specifies a file available via some URI. # A generic remote file.
                          "sha256Checksum": "A String", # SHA256 checksum of the remote file.
                          "uri": "A String", # Required. URI from which to fetch the object. It should contain both the protocol and path following the format `{protocol}://{location}`.
                        },
                      },
                    },
                    "yum": { # A package managed by YUM. - install: `yum -y install package` - remove: `yum -y remove package` # A package managed by YUM.
                      "name": "A String", # Required. Package name.
                    },
                    "zypper": { # A package managed by Zypper. - install: `zypper -y install package` - remove: `zypper -y rm package` # A package managed by Zypper.
                      "name": "A String", # Required. Package name.
                    },
                  },
                  "repository": { # A resource that manages a package repository. # Package repository resource
                    "apt": { # Represents a single apt package repository. These will be added to a repo file that will be managed at `/etc/apt/sources.list.d/google_osconfig.list`. # An Apt Repository.
                      "archiveType": "A String", # Required. Type of archive files in this repository.
                      "components": [ # Required. List of components for this repository. Must contain at least one item.
                        "A String",
                      ],
                      "distribution": "A String", # Required. Distribution of this repository.
                      "gpgKey": "A String", # URI of the key file for this repository. The agent maintains a keyring at `/etc/apt/trusted.gpg.d/osconfig_agent_managed.gpg`.
                      "uri": "A String", # Required. URI for this repository.
                    },
                    "goo": { # Represents a Goo package repository. These are added to a repo file that is managed at `C:/ProgramData/GooGet/repos/google_osconfig.repo`. # A Goo Repository.
                      "name": "A String", # Required. The name of the repository.
                      "url": "A String", # Required. The url of the repository.
                    },
                    "yum": { # Represents a single yum package repository. These are added to a repo file that is managed at `/etc/yum.repos.d/google_osconfig.repo`. # A Yum Repository.
                      "baseUrl": "A String", # Required. The location of the repository directory.
                      "displayName": "A String", # The display name of the repository.
                      "gpgKeys": [ # URIs of GPG keys.
                        "A String",
                      ],
                      "id": "A String", # Required. A one word, unique name for this repository. This is the `repo id` in the yum config file and also the `display_name` if `display_name` is omitted. This id is also used as the unique identifier when checking for resource conflicts.
                    },
                    "zypper": { # Represents a single zypper package repository. These are added to a repo file that is managed at `/etc/zypp/repos.d/google_osconfig.repo`. # A Zypper Repository.
                      "baseUrl": "A String", # Required. The location of the repository directory.
                      "displayName": "A String", # The display name of the repository.
                      "gpgKeys": [ # URIs of GPG keys.
                        "A String",
                      ],
                      "id": "A String", # Required. A one word, unique name for this repository. This is the `repo id` in the zypper config file and also the `display_name` if `display_name` is omitted. This id is also used as the unique identifier when checking for GuestPolicy conflicts.
                    },
                  },
                },
              ],
            },
          ],
        },
      ],
      "reconciling": True or False, # Output only. Indicates that reconciliation is in progress for the revision. This value is `true` when the `rollout_state` is one of: * IN_PROGRESS * CANCELLING
      "revisionCreateTime": "A String", # Output only. The timestamp that the revision was created.
      "revisionId": "A String", # Output only. The assignment revision ID A new revision is committed whenever a rollout is triggered for a OS policy assignment
      "rollout": { # Message to configure the rollout at the zonal level for the OS policy assignment. # Required. Rollout to deploy the OS policy assignment. A rollout is triggered in the following situations: 1) OSPolicyAssignment is created. 2) OSPolicyAssignment is updated and the update contains changes to one of the following fields: - instance_filter - os_policies 3) OSPolicyAssignment is deleted.
        "disruptionBudget": { # Message encapsulating a value that can be either absolute ("fixed") or relative ("percent") to a value. # Required. The maximum number (or percentage) of VMs per zone to disrupt at any given moment.
          "fixed": 42, # Specifies a fixed value.
          "percent": 42, # Specifies the relative value defined as a percentage, which will be multiplied by a reference value.
        },
        "minWaitDuration": "A String", # Required. This determines the minimum duration of time to wait after the configuration changes are applied through the current rollout. A VM continues to count towards the `disruption_budget` at least until this duration of time has passed after configuration changes are applied.
      },
      "rolloutState": "A String", # Output only. OS policy assignment rollout state
      "uid": "A String", # Output only. Server generated unique id for the OS policy assignment resource.
    },
  ],
}
listRevisions(name, pageSize=None, pageToken=None, x__xgafv=None)
List the OS policy assignment revisions for a given OS policy assignment.

Args:
  name: string, Required. The name of the OS policy assignment to list revisions for. (required)
  pageSize: integer, The maximum number of revisions to return.
  pageToken: string, A pagination token returned from a previous call to `ListOSPolicyAssignmentRevisions` that indicates where this listing should continue from.
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # A response message for listing all revisions for a OS policy assignment.
  "nextPageToken": "A String", # The pagination token to retrieve the next page of OS policy assignment revisions.
  "osPolicyAssignments": [ # The OS policy assignment revisions
    { # OS policy assignment is an API resource that is used to apply a set of OS policies to a dynamically targeted group of Compute Engine VM instances. An OS policy is used to define the desired state configuration for a Compute Engine VM instance through a set of configuration resources that provide capabilities such as installing or removing software packages, or executing a script. For more information about the OS policy resource definitions and examples, see [OS policy and OS policy assignment](https://cloud.google.com/compute/docs/os-configuration-management/working-with-os-policies).
      "baseline": True or False, # Output only. Indicates that this revision has been successfully rolled out in this zone and new VMs will be assigned OS policies from this revision. For a given OS policy assignment, there is only one revision with a value of `true` for this field.
      "deleted": True or False, # Output only. Indicates that this revision deletes the OS policy assignment.
      "description": "A String", # OS policy assignment description. Length of the description is limited to 1024 characters.
      "etag": "A String", # The etag for this OS policy assignment. If this is provided on update, it must match the server's etag.
      "instanceFilter": { # Filters to select target VMs for an assignment. If more than one filter criteria is specified below, a VM will be selected if and only if it satisfies all of them. # Required. Filter to select VMs.
        "all": True or False, # Target all VMs in the project. If true, no other criteria is permitted.
        "exclusionLabels": [ # List of label sets used for VM exclusion. If the list has more than one label set, the VM is excluded if any of the label sets are applicable for the VM.
          { # Message representing label set. * A label is a key value pair set for a VM. * A LabelSet is a set of labels. * Labels within a LabelSet are ANDed. In other words, a LabelSet is applicable for a VM only if it matches all the labels in the LabelSet. * Example: A LabelSet with 2 labels: `env=prod` and `type=webserver` will only be applicable for those VMs with both labels present.
            "labels": { # Labels are identified by key/value pairs in this map. A VM should contain all the key/value pairs specified in this map to be selected.
              "a_key": "A String",
            },
          },
        ],
        "inclusionLabels": [ # List of label sets used for VM inclusion. If the list has more than one `LabelSet`, the VM is included if any of the label sets are applicable for the VM.
          { # Message representing label set. * A label is a key value pair set for a VM. * A LabelSet is a set of labels. * Labels within a LabelSet are ANDed. In other words, a LabelSet is applicable for a VM only if it matches all the labels in the LabelSet. * Example: A LabelSet with 2 labels: `env=prod` and `type=webserver` will only be applicable for those VMs with both labels present.
            "labels": { # Labels are identified by key/value pairs in this map. A VM should contain all the key/value pairs specified in this map to be selected.
              "a_key": "A String",
            },
          },
        ],
        "inventories": [ # List of inventories to select VMs. A VM is selected if its inventory data matches at least one of the following inventories.
          { # VM inventory details.
            "osShortName": "A String", # Required. The OS short name
            "osVersion": "A String", # The OS version Prefix matches are supported if asterisk(*) is provided as the last character. For example, to match all versions with a major version of `7`, specify the following value for this field `7.*` An empty string matches all OS versions.
          },
        ],
      },
      "name": "A String", # Resource name. Format: `projects/{project_number}/locations/{location}/osPolicyAssignments/{os_policy_assignment_id}` This field is ignored when you create an OS policy assignment.
      "osPolicies": [ # Required. List of OS policies to be applied to the VMs.
        { # An OS policy defines the desired state configuration for a VM.
          "allowNoResourceGroupMatch": True or False, # This flag determines the OS policy compliance status when none of the resource groups within the policy are applicable for a VM. Set this value to `true` if the policy needs to be reported as compliant even if the policy has nothing to validate or enforce.
          "description": "A String", # Policy description. Length of the description is limited to 1024 characters.
          "id": "A String", # Required. The id of the OS policy with the following restrictions: * Must contain only lowercase letters, numbers, and hyphens. * Must start with a letter. * Must be between 1-63 characters. * Must end with a number or a letter. * Must be unique within the assignment.
          "mode": "A String", # Required. Policy mode
          "resourceGroups": [ # Required. List of resource groups for the policy. For a particular VM, resource groups are evaluated in the order specified and the first resource group that is applicable is selected and the rest are ignored. If none of the resource groups are applicable for a VM, the VM is considered to be non-compliant w.r.t this policy. This behavior can be toggled by the flag `allow_no_resource_group_match`
            { # Resource groups provide a mechanism to group OS policy resources. Resource groups enable OS policy authors to create a single OS policy to be applied to VMs running different operating Systems. When the OS policy is applied to a target VM, the appropriate resource group within the OS policy is selected based on the `OSFilter` specified within the resource group.
              "inventoryFilters": [ # List of inventory filters for the resource group. The resources in this resource group are applied to the target VM if it satisfies at least one of the following inventory filters. For example, to apply this resource group to VMs running either `RHEL` or `CentOS` operating systems, specify 2 items for the list with following values: inventory_filters[0].os_short_name='rhel' and inventory_filters[1].os_short_name='centos' If the list is empty, this resource group will be applied to the target VM unconditionally.
                { # Filtering criteria to select VMs based on inventory details.
                  "osShortName": "A String", # Required. The OS short name
                  "osVersion": "A String", # The OS version Prefix matches are supported if asterisk(*) is provided as the last character. For example, to match all versions with a major version of `7`, specify the following value for this field `7.*` An empty string matches all OS versions.
                },
              ],
              "resources": [ # Required. List of resources configured for this resource group. The resources are executed in the exact order specified here.
                { # An OS policy resource is used to define the desired state configuration and provides a specific functionality like installing/removing packages, executing a script etc. The system ensures that resources are always in their desired state by taking necessary actions if they have drifted from their desired state.
                  "exec": { # A resource that allows executing scripts on the VM. The `ExecResource` has 2 stages: `validate` and `enforce` and both stages accept a script as an argument to execute. When the `ExecResource` is applied by the agent, it first executes the script in the `validate` stage. The `validate` stage can signal that the `ExecResource` is already in the desired state by returning an exit code of `100`. If the `ExecResource` is not in the desired state, it should return an exit code of `101`. Any other exit code returned by this stage is considered an error. If the `ExecResource` is not in the desired state based on the exit code from the `validate` stage, the agent proceeds to execute the script from the `enforce` stage. If the `ExecResource` is already in the desired state, the `enforce` stage will not be run. Similar to `validate` stage, the `enforce` stage should return an exit code of `100` to indicate that the resource in now in its desired state. Any other exit code is considered an error. NOTE: An exit code of `100` was chosen over `0` (and `101` vs `1`) to have an explicit indicator of `in desired state`, `not in desired state` and errors. Because, for example, Powershell will always return an exit code of `0` unless an `exit` statement is provided in the script. So, for reasons of consistency and being explicit, exit codes `100` and `101` were chosen. # Exec resource
                    "enforce": { # A file or script to execute. # What to run to bring this resource into the desired state. An exit code of 100 indicates "success", any other exit code indicates a failure running enforce.
                      "args": [ # Optional arguments to pass to the source during execution.
                        "A String",
                      ],
                      "file": { # A remote or local file. # A remote or local file.
                        "allowInsecure": True or False, # Defaults to false. When false, files are subject to validations based on the file type: Remote: A checksum must be specified. Cloud Storage: An object generation number must be specified.
                        "gcs": { # Specifies a file available as a Cloud Storage Object. # A Cloud Storage object.
                          "bucket": "A String", # Required. Bucket of the Cloud Storage object.
                          "generation": "A String", # Generation number of the Cloud Storage object.
                          "object": "A String", # Required. Name of the Cloud Storage object.
                        },
                        "localPath": "A String", # A local path within the VM to use.
                        "remote": { # Specifies a file available via some URI. # A generic remote file.
                          "sha256Checksum": "A String", # SHA256 checksum of the remote file.
                          "uri": "A String", # Required. URI from which to fetch the object. It should contain both the protocol and path following the format `{protocol}://{location}`.
                        },
                      },
                      "interpreter": "A String", # Required. The script interpreter to use.
                      "outputFilePath": "A String", # Only recorded for enforce Exec. Path to an output file (that is created by this Exec) whose content will be recorded in OSPolicyResourceCompliance after a successful run. Absence or failure to read this file will result in this ExecResource being non-compliant. Output file size is limited to 100K bytes.
                      "script": "A String", # An inline script. The size of the script is limited to 32KiB.
                    },
                    "validate": { # A file or script to execute. # Required. What to run to validate this resource is in the desired state. An exit code of 100 indicates "in desired state", and exit code of 101 indicates "not in desired state". Any other exit code indicates a failure running validate.
                      "args": [ # Optional arguments to pass to the source during execution.
                        "A String",
                      ],
                      "file": { # A remote or local file. # A remote or local file.
                        "allowInsecure": True or False, # Defaults to false. When false, files are subject to validations based on the file type: Remote: A checksum must be specified. Cloud Storage: An object generation number must be specified.
                        "gcs": { # Specifies a file available as a Cloud Storage Object. # A Cloud Storage object.
                          "bucket": "A String", # Required. Bucket of the Cloud Storage object.
                          "generation": "A String", # Generation number of the Cloud Storage object.
                          "object": "A String", # Required. Name of the Cloud Storage object.
                        },
                        "localPath": "A String", # A local path within the VM to use.
                        "remote": { # Specifies a file available via some URI. # A generic remote file.
                          "sha256Checksum": "A String", # SHA256 checksum of the remote file.
                          "uri": "A String", # Required. URI from which to fetch the object. It should contain both the protocol and path following the format `{protocol}://{location}`.
                        },
                      },
                      "interpreter": "A String", # Required. The script interpreter to use.
                      "outputFilePath": "A String", # Only recorded for enforce Exec. Path to an output file (that is created by this Exec) whose content will be recorded in OSPolicyResourceCompliance after a successful run. Absence or failure to read this file will result in this ExecResource being non-compliant. Output file size is limited to 100K bytes.
                      "script": "A String", # An inline script. The size of the script is limited to 32KiB.
                    },
                  },
                  "file": { # A resource that manages the state of a file. # File resource
                    "content": "A String", # A a file with this content. The size of the content is limited to 32KiB.
                    "file": { # A remote or local file. # A remote or local source.
                      "allowInsecure": True or False, # Defaults to false. When false, files are subject to validations based on the file type: Remote: A checksum must be specified. Cloud Storage: An object generation number must be specified.
                      "gcs": { # Specifies a file available as a Cloud Storage Object. # A Cloud Storage object.
                        "bucket": "A String", # Required. Bucket of the Cloud Storage object.
                        "generation": "A String", # Generation number of the Cloud Storage object.
                        "object": "A String", # Required. Name of the Cloud Storage object.
                      },
                      "localPath": "A String", # A local path within the VM to use.
                      "remote": { # Specifies a file available via some URI. # A generic remote file.
                        "sha256Checksum": "A String", # SHA256 checksum of the remote file.
                        "uri": "A String", # Required. URI from which to fetch the object. It should contain both the protocol and path following the format `{protocol}://{location}`.
                      },
                    },
                    "path": "A String", # Required. The absolute path of the file within the VM.
                    "permissions": "A String", # Consists of three octal digits which represent, in order, the permissions of the owner, group, and other users for the file (similarly to the numeric mode used in the linux chmod utility). Each digit represents a three bit number with the 4 bit corresponding to the read permissions, the 2 bit corresponds to the write bit, and the one bit corresponds to the execute permission. Default behavior is 755. Below are some examples of permissions and their associated values: read, write, and execute: 7 read and execute: 5 read and write: 6 read only: 4
                    "state": "A String", # Required. Desired state of the file.
                  },
                  "id": "A String", # Required. The id of the resource with the following restrictions: * Must contain only lowercase letters, numbers, and hyphens. * Must start with a letter. * Must be between 1-63 characters. * Must end with a number or a letter. * Must be unique within the OS policy.
                  "pkg": { # A resource that manages a system package. # Package resource
                    "apt": { # A package managed by APT. - install: `apt-get update && apt-get -y install [name]` - remove: `apt-get -y remove [name]` # A package managed by Apt.
                      "name": "A String", # Required. Package name.
                    },
                    "deb": { # A deb package file. dpkg packages only support INSTALLED state. # A deb package file.
                      "pullDeps": True or False, # Whether dependencies should also be installed. - install when false: `dpkg -i package` - install when true: `apt-get update && apt-get -y install package.deb`
                      "source": { # A remote or local file. # Required. A deb package.
                        "allowInsecure": True or False, # Defaults to false. When false, files are subject to validations based on the file type: Remote: A checksum must be specified. Cloud Storage: An object generation number must be specified.
                        "gcs": { # Specifies a file available as a Cloud Storage Object. # A Cloud Storage object.
                          "bucket": "A String", # Required. Bucket of the Cloud Storage object.
                          "generation": "A String", # Generation number of the Cloud Storage object.
                          "object": "A String", # Required. Name of the Cloud Storage object.
                        },
                        "localPath": "A String", # A local path within the VM to use.
                        "remote": { # Specifies a file available via some URI. # A generic remote file.
                          "sha256Checksum": "A String", # SHA256 checksum of the remote file.
                          "uri": "A String", # Required. URI from which to fetch the object. It should contain both the protocol and path following the format `{protocol}://{location}`.
                        },
                      },
                    },
                    "desiredState": "A String", # Required. The desired state the agent should maintain for this package.
                    "googet": { # A package managed by GooGet. - install: `googet -noconfirm install package` - remove: `googet -noconfirm remove package` # A package managed by GooGet.
                      "name": "A String", # Required. Package name.
                    },
                    "msi": { # An MSI package. MSI packages only support INSTALLED state. # An MSI package.
                      "properties": [ # Additional properties to use during installation. This should be in the format of Property=Setting. Appended to the defaults of `ACTION=INSTALL REBOOT=ReallySuppress`.
                        "A String",
                      ],
                      "source": { # A remote or local file. # Required. The MSI package.
                        "allowInsecure": True or False, # Defaults to false. When false, files are subject to validations based on the file type: Remote: A checksum must be specified. Cloud Storage: An object generation number must be specified.
                        "gcs": { # Specifies a file available as a Cloud Storage Object. # A Cloud Storage object.
                          "bucket": "A String", # Required. Bucket of the Cloud Storage object.
                          "generation": "A String", # Generation number of the Cloud Storage object.
                          "object": "A String", # Required. Name of the Cloud Storage object.
                        },
                        "localPath": "A String", # A local path within the VM to use.
                        "remote": { # Specifies a file available via some URI. # A generic remote file.
                          "sha256Checksum": "A String", # SHA256 checksum of the remote file.
                          "uri": "A String", # Required. URI from which to fetch the object. It should contain both the protocol and path following the format `{protocol}://{location}`.
                        },
                      },
                    },
                    "rpm": { # An RPM package file. RPM packages only support INSTALLED state. # An rpm package file.
                      "pullDeps": True or False, # Whether dependencies should also be installed. - install when false: `rpm --upgrade --replacepkgs package.rpm` - install when true: `yum -y install package.rpm` or `zypper -y install package.rpm`
                      "source": { # A remote or local file. # Required. An rpm package.
                        "allowInsecure": True or False, # Defaults to false. When false, files are subject to validations based on the file type: Remote: A checksum must be specified. Cloud Storage: An object generation number must be specified.
                        "gcs": { # Specifies a file available as a Cloud Storage Object. # A Cloud Storage object.
                          "bucket": "A String", # Required. Bucket of the Cloud Storage object.
                          "generation": "A String", # Generation number of the Cloud Storage object.
                          "object": "A String", # Required. Name of the Cloud Storage object.
                        },
                        "localPath": "A String", # A local path within the VM to use.
                        "remote": { # Specifies a file available via some URI. # A generic remote file.
                          "sha256Checksum": "A String", # SHA256 checksum of the remote file.
                          "uri": "A String", # Required. URI from which to fetch the object. It should contain both the protocol and path following the format `{protocol}://{location}`.
                        },
                      },
                    },
                    "yum": { # A package managed by YUM. - install: `yum -y install package` - remove: `yum -y remove package` # A package managed by YUM.
                      "name": "A String", # Required. Package name.
                    },
                    "zypper": { # A package managed by Zypper. - install: `zypper -y install package` - remove: `zypper -y rm package` # A package managed by Zypper.
                      "name": "A String", # Required. Package name.
                    },
                  },
                  "repository": { # A resource that manages a package repository. # Package repository resource
                    "apt": { # Represents a single apt package repository. These will be added to a repo file that will be managed at `/etc/apt/sources.list.d/google_osconfig.list`. # An Apt Repository.
                      "archiveType": "A String", # Required. Type of archive files in this repository.
                      "components": [ # Required. List of components for this repository. Must contain at least one item.
                        "A String",
                      ],
                      "distribution": "A String", # Required. Distribution of this repository.
                      "gpgKey": "A String", # URI of the key file for this repository. The agent maintains a keyring at `/etc/apt/trusted.gpg.d/osconfig_agent_managed.gpg`.
                      "uri": "A String", # Required. URI for this repository.
                    },
                    "goo": { # Represents a Goo package repository. These are added to a repo file that is managed at `C:/ProgramData/GooGet/repos/google_osconfig.repo`. # A Goo Repository.
                      "name": "A String", # Required. The name of the repository.
                      "url": "A String", # Required. The url of the repository.
                    },
                    "yum": { # Represents a single yum package repository. These are added to a repo file that is managed at `/etc/yum.repos.d/google_osconfig.repo`. # A Yum Repository.
                      "baseUrl": "A String", # Required. The location of the repository directory.
                      "displayName": "A String", # The display name of the repository.
                      "gpgKeys": [ # URIs of GPG keys.
                        "A String",
                      ],
                      "id": "A String", # Required. A one word, unique name for this repository. This is the `repo id` in the yum config file and also the `display_name` if `display_name` is omitted. This id is also used as the unique identifier when checking for resource conflicts.
                    },
                    "zypper": { # Represents a single zypper package repository. These are added to a repo file that is managed at `/etc/zypp/repos.d/google_osconfig.repo`. # A Zypper Repository.
                      "baseUrl": "A String", # Required. The location of the repository directory.
                      "displayName": "A String", # The display name of the repository.
                      "gpgKeys": [ # URIs of GPG keys.
                        "A String",
                      ],
                      "id": "A String", # Required. A one word, unique name for this repository. This is the `repo id` in the zypper config file and also the `display_name` if `display_name` is omitted. This id is also used as the unique identifier when checking for GuestPolicy conflicts.
                    },
                  },
                },
              ],
            },
          ],
        },
      ],
      "reconciling": True or False, # Output only. Indicates that reconciliation is in progress for the revision. This value is `true` when the `rollout_state` is one of: * IN_PROGRESS * CANCELLING
      "revisionCreateTime": "A String", # Output only. The timestamp that the revision was created.
      "revisionId": "A String", # Output only. The assignment revision ID A new revision is committed whenever a rollout is triggered for a OS policy assignment
      "rollout": { # Message to configure the rollout at the zonal level for the OS policy assignment. # Required. Rollout to deploy the OS policy assignment. A rollout is triggered in the following situations: 1) OSPolicyAssignment is created. 2) OSPolicyAssignment is updated and the update contains changes to one of the following fields: - instance_filter - os_policies 3) OSPolicyAssignment is deleted.
        "disruptionBudget": { # Message encapsulating a value that can be either absolute ("fixed") or relative ("percent") to a value. # Required. The maximum number (or percentage) of VMs per zone to disrupt at any given moment.
          "fixed": 42, # Specifies a fixed value.
          "percent": 42, # Specifies the relative value defined as a percentage, which will be multiplied by a reference value.
        },
        "minWaitDuration": "A String", # Required. This determines the minimum duration of time to wait after the configuration changes are applied through the current rollout. A VM continues to count towards the `disruption_budget` at least until this duration of time has passed after configuration changes are applied.
      },
      "rolloutState": "A String", # Output only. OS policy assignment rollout state
      "uid": "A String", # Output only. Server generated unique id for the OS policy assignment resource.
    },
  ],
}
listRevisions_next()
Retrieves the next page of results.

        Args:
          previous_request: The request for the previous page. (required)
          previous_response: The response from the request for the previous page. (required)

        Returns:
          A request object that you can call 'execute()' on to request the next
          page. Returns None if there are no more items in the collection.
        
list_next()
Retrieves the next page of results.

        Args:
          previous_request: The request for the previous page. (required)
          previous_response: The response from the request for the previous page. (required)

        Returns:
          A request object that you can call 'execute()' on to request the next
          page. Returns None if there are no more items in the collection.
        
patch(name, body=None, updateMask=None, x__xgafv=None)
Update an existing OS policy assignment. This method creates a new revision of the OS policy assignment. This method returns a long running operation (LRO) that contains the rollout details. The rollout can be cancelled by cancelling the LRO. For more information, see [Method: projects.locations.osPolicyAssignments.operations.cancel](https://cloud.google.com/compute/docs/osconfig/rest/v1/projects.locations.osPolicyAssignments.operations/cancel).

Args:
  name: string, Resource name. Format: `projects/{project_number}/locations/{location}/osPolicyAssignments/{os_policy_assignment_id}` This field is ignored when you create an OS policy assignment. (required)
  body: object, The request body.
    The object takes the form of:

{ # OS policy assignment is an API resource that is used to apply a set of OS policies to a dynamically targeted group of Compute Engine VM instances. An OS policy is used to define the desired state configuration for a Compute Engine VM instance through a set of configuration resources that provide capabilities such as installing or removing software packages, or executing a script. For more information about the OS policy resource definitions and examples, see [OS policy and OS policy assignment](https://cloud.google.com/compute/docs/os-configuration-management/working-with-os-policies).
  "baseline": True or False, # Output only. Indicates that this revision has been successfully rolled out in this zone and new VMs will be assigned OS policies from this revision. For a given OS policy assignment, there is only one revision with a value of `true` for this field.
  "deleted": True or False, # Output only. Indicates that this revision deletes the OS policy assignment.
  "description": "A String", # OS policy assignment description. Length of the description is limited to 1024 characters.
  "etag": "A String", # The etag for this OS policy assignment. If this is provided on update, it must match the server's etag.
  "instanceFilter": { # Filters to select target VMs for an assignment. If more than one filter criteria is specified below, a VM will be selected if and only if it satisfies all of them. # Required. Filter to select VMs.
    "all": True or False, # Target all VMs in the project. If true, no other criteria is permitted.
    "exclusionLabels": [ # List of label sets used for VM exclusion. If the list has more than one label set, the VM is excluded if any of the label sets are applicable for the VM.
      { # Message representing label set. * A label is a key value pair set for a VM. * A LabelSet is a set of labels. * Labels within a LabelSet are ANDed. In other words, a LabelSet is applicable for a VM only if it matches all the labels in the LabelSet. * Example: A LabelSet with 2 labels: `env=prod` and `type=webserver` will only be applicable for those VMs with both labels present.
        "labels": { # Labels are identified by key/value pairs in this map. A VM should contain all the key/value pairs specified in this map to be selected.
          "a_key": "A String",
        },
      },
    ],
    "inclusionLabels": [ # List of label sets used for VM inclusion. If the list has more than one `LabelSet`, the VM is included if any of the label sets are applicable for the VM.
      { # Message representing label set. * A label is a key value pair set for a VM. * A LabelSet is a set of labels. * Labels within a LabelSet are ANDed. In other words, a LabelSet is applicable for a VM only if it matches all the labels in the LabelSet. * Example: A LabelSet with 2 labels: `env=prod` and `type=webserver` will only be applicable for those VMs with both labels present.
        "labels": { # Labels are identified by key/value pairs in this map. A VM should contain all the key/value pairs specified in this map to be selected.
          "a_key": "A String",
        },
      },
    ],
    "inventories": [ # List of inventories to select VMs. A VM is selected if its inventory data matches at least one of the following inventories.
      { # VM inventory details.
        "osShortName": "A String", # Required. The OS short name
        "osVersion": "A String", # The OS version Prefix matches are supported if asterisk(*) is provided as the last character. For example, to match all versions with a major version of `7`, specify the following value for this field `7.*` An empty string matches all OS versions.
      },
    ],
  },
  "name": "A String", # Resource name. Format: `projects/{project_number}/locations/{location}/osPolicyAssignments/{os_policy_assignment_id}` This field is ignored when you create an OS policy assignment.
  "osPolicies": [ # Required. List of OS policies to be applied to the VMs.
    { # An OS policy defines the desired state configuration for a VM.
      "allowNoResourceGroupMatch": True or False, # This flag determines the OS policy compliance status when none of the resource groups within the policy are applicable for a VM. Set this value to `true` if the policy needs to be reported as compliant even if the policy has nothing to validate or enforce.
      "description": "A String", # Policy description. Length of the description is limited to 1024 characters.
      "id": "A String", # Required. The id of the OS policy with the following restrictions: * Must contain only lowercase letters, numbers, and hyphens. * Must start with a letter. * Must be between 1-63 characters. * Must end with a number or a letter. * Must be unique within the assignment.
      "mode": "A String", # Required. Policy mode
      "resourceGroups": [ # Required. List of resource groups for the policy. For a particular VM, resource groups are evaluated in the order specified and the first resource group that is applicable is selected and the rest are ignored. If none of the resource groups are applicable for a VM, the VM is considered to be non-compliant w.r.t this policy. This behavior can be toggled by the flag `allow_no_resource_group_match`
        { # Resource groups provide a mechanism to group OS policy resources. Resource groups enable OS policy authors to create a single OS policy to be applied to VMs running different operating Systems. When the OS policy is applied to a target VM, the appropriate resource group within the OS policy is selected based on the `OSFilter` specified within the resource group.
          "inventoryFilters": [ # List of inventory filters for the resource group. The resources in this resource group are applied to the target VM if it satisfies at least one of the following inventory filters. For example, to apply this resource group to VMs running either `RHEL` or `CentOS` operating systems, specify 2 items for the list with following values: inventory_filters[0].os_short_name='rhel' and inventory_filters[1].os_short_name='centos' If the list is empty, this resource group will be applied to the target VM unconditionally.
            { # Filtering criteria to select VMs based on inventory details.
              "osShortName": "A String", # Required. The OS short name
              "osVersion": "A String", # The OS version Prefix matches are supported if asterisk(*) is provided as the last character. For example, to match all versions with a major version of `7`, specify the following value for this field `7.*` An empty string matches all OS versions.
            },
          ],
          "resources": [ # Required. List of resources configured for this resource group. The resources are executed in the exact order specified here.
            { # An OS policy resource is used to define the desired state configuration and provides a specific functionality like installing/removing packages, executing a script etc. The system ensures that resources are always in their desired state by taking necessary actions if they have drifted from their desired state.
              "exec": { # A resource that allows executing scripts on the VM. The `ExecResource` has 2 stages: `validate` and `enforce` and both stages accept a script as an argument to execute. When the `ExecResource` is applied by the agent, it first executes the script in the `validate` stage. The `validate` stage can signal that the `ExecResource` is already in the desired state by returning an exit code of `100`. If the `ExecResource` is not in the desired state, it should return an exit code of `101`. Any other exit code returned by this stage is considered an error. If the `ExecResource` is not in the desired state based on the exit code from the `validate` stage, the agent proceeds to execute the script from the `enforce` stage. If the `ExecResource` is already in the desired state, the `enforce` stage will not be run. Similar to `validate` stage, the `enforce` stage should return an exit code of `100` to indicate that the resource in now in its desired state. Any other exit code is considered an error. NOTE: An exit code of `100` was chosen over `0` (and `101` vs `1`) to have an explicit indicator of `in desired state`, `not in desired state` and errors. Because, for example, Powershell will always return an exit code of `0` unless an `exit` statement is provided in the script. So, for reasons of consistency and being explicit, exit codes `100` and `101` were chosen. # Exec resource
                "enforce": { # A file or script to execute. # What to run to bring this resource into the desired state. An exit code of 100 indicates "success", any other exit code indicates a failure running enforce.
                  "args": [ # Optional arguments to pass to the source during execution.
                    "A String",
                  ],
                  "file": { # A remote or local file. # A remote or local file.
                    "allowInsecure": True or False, # Defaults to false. When false, files are subject to validations based on the file type: Remote: A checksum must be specified. Cloud Storage: An object generation number must be specified.
                    "gcs": { # Specifies a file available as a Cloud Storage Object. # A Cloud Storage object.
                      "bucket": "A String", # Required. Bucket of the Cloud Storage object.
                      "generation": "A String", # Generation number of the Cloud Storage object.
                      "object": "A String", # Required. Name of the Cloud Storage object.
                    },
                    "localPath": "A String", # A local path within the VM to use.
                    "remote": { # Specifies a file available via some URI. # A generic remote file.
                      "sha256Checksum": "A String", # SHA256 checksum of the remote file.
                      "uri": "A String", # Required. URI from which to fetch the object. It should contain both the protocol and path following the format `{protocol}://{location}`.
                    },
                  },
                  "interpreter": "A String", # Required. The script interpreter to use.
                  "outputFilePath": "A String", # Only recorded for enforce Exec. Path to an output file (that is created by this Exec) whose content will be recorded in OSPolicyResourceCompliance after a successful run. Absence or failure to read this file will result in this ExecResource being non-compliant. Output file size is limited to 100K bytes.
                  "script": "A String", # An inline script. The size of the script is limited to 32KiB.
                },
                "validate": { # A file or script to execute. # Required. What to run to validate this resource is in the desired state. An exit code of 100 indicates "in desired state", and exit code of 101 indicates "not in desired state". Any other exit code indicates a failure running validate.
                  "args": [ # Optional arguments to pass to the source during execution.
                    "A String",
                  ],
                  "file": { # A remote or local file. # A remote or local file.
                    "allowInsecure": True or False, # Defaults to false. When false, files are subject to validations based on the file type: Remote: A checksum must be specified. Cloud Storage: An object generation number must be specified.
                    "gcs": { # Specifies a file available as a Cloud Storage Object. # A Cloud Storage object.
                      "bucket": "A String", # Required. Bucket of the Cloud Storage object.
                      "generation": "A String", # Generation number of the Cloud Storage object.
                      "object": "A String", # Required. Name of the Cloud Storage object.
                    },
                    "localPath": "A String", # A local path within the VM to use.
                    "remote": { # Specifies a file available via some URI. # A generic remote file.
                      "sha256Checksum": "A String", # SHA256 checksum of the remote file.
                      "uri": "A String", # Required. URI from which to fetch the object. It should contain both the protocol and path following the format `{protocol}://{location}`.
                    },
                  },
                  "interpreter": "A String", # Required. The script interpreter to use.
                  "outputFilePath": "A String", # Only recorded for enforce Exec. Path to an output file (that is created by this Exec) whose content will be recorded in OSPolicyResourceCompliance after a successful run. Absence or failure to read this file will result in this ExecResource being non-compliant. Output file size is limited to 100K bytes.
                  "script": "A String", # An inline script. The size of the script is limited to 32KiB.
                },
              },
              "file": { # A resource that manages the state of a file. # File resource
                "content": "A String", # A a file with this content. The size of the content is limited to 32KiB.
                "file": { # A remote or local file. # A remote or local source.
                  "allowInsecure": True or False, # Defaults to false. When false, files are subject to validations based on the file type: Remote: A checksum must be specified. Cloud Storage: An object generation number must be specified.
                  "gcs": { # Specifies a file available as a Cloud Storage Object. # A Cloud Storage object.
                    "bucket": "A String", # Required. Bucket of the Cloud Storage object.
                    "generation": "A String", # Generation number of the Cloud Storage object.
                    "object": "A String", # Required. Name of the Cloud Storage object.
                  },
                  "localPath": "A String", # A local path within the VM to use.
                  "remote": { # Specifies a file available via some URI. # A generic remote file.
                    "sha256Checksum": "A String", # SHA256 checksum of the remote file.
                    "uri": "A String", # Required. URI from which to fetch the object. It should contain both the protocol and path following the format `{protocol}://{location}`.
                  },
                },
                "path": "A String", # Required. The absolute path of the file within the VM.
                "permissions": "A String", # Consists of three octal digits which represent, in order, the permissions of the owner, group, and other users for the file (similarly to the numeric mode used in the linux chmod utility). Each digit represents a three bit number with the 4 bit corresponding to the read permissions, the 2 bit corresponds to the write bit, and the one bit corresponds to the execute permission. Default behavior is 755. Below are some examples of permissions and their associated values: read, write, and execute: 7 read and execute: 5 read and write: 6 read only: 4
                "state": "A String", # Required. Desired state of the file.
              },
              "id": "A String", # Required. The id of the resource with the following restrictions: * Must contain only lowercase letters, numbers, and hyphens. * Must start with a letter. * Must be between 1-63 characters. * Must end with a number or a letter. * Must be unique within the OS policy.
              "pkg": { # A resource that manages a system package. # Package resource
                "apt": { # A package managed by APT. - install: `apt-get update && apt-get -y install [name]` - remove: `apt-get -y remove [name]` # A package managed by Apt.
                  "name": "A String", # Required. Package name.
                },
                "deb": { # A deb package file. dpkg packages only support INSTALLED state. # A deb package file.
                  "pullDeps": True or False, # Whether dependencies should also be installed. - install when false: `dpkg -i package` - install when true: `apt-get update && apt-get -y install package.deb`
                  "source": { # A remote or local file. # Required. A deb package.
                    "allowInsecure": True or False, # Defaults to false. When false, files are subject to validations based on the file type: Remote: A checksum must be specified. Cloud Storage: An object generation number must be specified.
                    "gcs": { # Specifies a file available as a Cloud Storage Object. # A Cloud Storage object.
                      "bucket": "A String", # Required. Bucket of the Cloud Storage object.
                      "generation": "A String", # Generation number of the Cloud Storage object.
                      "object": "A String", # Required. Name of the Cloud Storage object.
                    },
                    "localPath": "A String", # A local path within the VM to use.
                    "remote": { # Specifies a file available via some URI. # A generic remote file.
                      "sha256Checksum": "A String", # SHA256 checksum of the remote file.
                      "uri": "A String", # Required. URI from which to fetch the object. It should contain both the protocol and path following the format `{protocol}://{location}`.
                    },
                  },
                },
                "desiredState": "A String", # Required. The desired state the agent should maintain for this package.
                "googet": { # A package managed by GooGet. - install: `googet -noconfirm install package` - remove: `googet -noconfirm remove package` # A package managed by GooGet.
                  "name": "A String", # Required. Package name.
                },
                "msi": { # An MSI package. MSI packages only support INSTALLED state. # An MSI package.
                  "properties": [ # Additional properties to use during installation. This should be in the format of Property=Setting. Appended to the defaults of `ACTION=INSTALL REBOOT=ReallySuppress`.
                    "A String",
                  ],
                  "source": { # A remote or local file. # Required. The MSI package.
                    "allowInsecure": True or False, # Defaults to false. When false, files are subject to validations based on the file type: Remote: A checksum must be specified. Cloud Storage: An object generation number must be specified.
                    "gcs": { # Specifies a file available as a Cloud Storage Object. # A Cloud Storage object.
                      "bucket": "A String", # Required. Bucket of the Cloud Storage object.
                      "generation": "A String", # Generation number of the Cloud Storage object.
                      "object": "A String", # Required. Name of the Cloud Storage object.
                    },
                    "localPath": "A String", # A local path within the VM to use.
                    "remote": { # Specifies a file available via some URI. # A generic remote file.
                      "sha256Checksum": "A String", # SHA256 checksum of the remote file.
                      "uri": "A String", # Required. URI from which to fetch the object. It should contain both the protocol and path following the format `{protocol}://{location}`.
                    },
                  },
                },
                "rpm": { # An RPM package file. RPM packages only support INSTALLED state. # An rpm package file.
                  "pullDeps": True or False, # Whether dependencies should also be installed. - install when false: `rpm --upgrade --replacepkgs package.rpm` - install when true: `yum -y install package.rpm` or `zypper -y install package.rpm`
                  "source": { # A remote or local file. # Required. An rpm package.
                    "allowInsecure": True or False, # Defaults to false. When false, files are subject to validations based on the file type: Remote: A checksum must be specified. Cloud Storage: An object generation number must be specified.
                    "gcs": { # Specifies a file available as a Cloud Storage Object. # A Cloud Storage object.
                      "bucket": "A String", # Required. Bucket of the Cloud Storage object.
                      "generation": "A String", # Generation number of the Cloud Storage object.
                      "object": "A String", # Required. Name of the Cloud Storage object.
                    },
                    "localPath": "A String", # A local path within the VM to use.
                    "remote": { # Specifies a file available via some URI. # A generic remote file.
                      "sha256Checksum": "A String", # SHA256 checksum of the remote file.
                      "uri": "A String", # Required. URI from which to fetch the object. It should contain both the protocol and path following the format `{protocol}://{location}`.
                    },
                  },
                },
                "yum": { # A package managed by YUM. - install: `yum -y install package` - remove: `yum -y remove package` # A package managed by YUM.
                  "name": "A String", # Required. Package name.
                },
                "zypper": { # A package managed by Zypper. - install: `zypper -y install package` - remove: `zypper -y rm package` # A package managed by Zypper.
                  "name": "A String", # Required. Package name.
                },
              },
              "repository": { # A resource that manages a package repository. # Package repository resource
                "apt": { # Represents a single apt package repository. These will be added to a repo file that will be managed at `/etc/apt/sources.list.d/google_osconfig.list`. # An Apt Repository.
                  "archiveType": "A String", # Required. Type of archive files in this repository.
                  "components": [ # Required. List of components for this repository. Must contain at least one item.
                    "A String",
                  ],
                  "distribution": "A String", # Required. Distribution of this repository.
                  "gpgKey": "A String", # URI of the key file for this repository. The agent maintains a keyring at `/etc/apt/trusted.gpg.d/osconfig_agent_managed.gpg`.
                  "uri": "A String", # Required. URI for this repository.
                },
                "goo": { # Represents a Goo package repository. These are added to a repo file that is managed at `C:/ProgramData/GooGet/repos/google_osconfig.repo`. # A Goo Repository.
                  "name": "A String", # Required. The name of the repository.
                  "url": "A String", # Required. The url of the repository.
                },
                "yum": { # Represents a single yum package repository. These are added to a repo file that is managed at `/etc/yum.repos.d/google_osconfig.repo`. # A Yum Repository.
                  "baseUrl": "A String", # Required. The location of the repository directory.
                  "displayName": "A String", # The display name of the repository.
                  "gpgKeys": [ # URIs of GPG keys.
                    "A String",
                  ],
                  "id": "A String", # Required. A one word, unique name for this repository. This is the `repo id` in the yum config file and also the `display_name` if `display_name` is omitted. This id is also used as the unique identifier when checking for resource conflicts.
                },
                "zypper": { # Represents a single zypper package repository. These are added to a repo file that is managed at `/etc/zypp/repos.d/google_osconfig.repo`. # A Zypper Repository.
                  "baseUrl": "A String", # Required. The location of the repository directory.
                  "displayName": "A String", # The display name of the repository.
                  "gpgKeys": [ # URIs of GPG keys.
                    "A String",
                  ],
                  "id": "A String", # Required. A one word, unique name for this repository. This is the `repo id` in the zypper config file and also the `display_name` if `display_name` is omitted. This id is also used as the unique identifier when checking for GuestPolicy conflicts.
                },
              },
            },
          ],
        },
      ],
    },
  ],
  "reconciling": True or False, # Output only. Indicates that reconciliation is in progress for the revision. This value is `true` when the `rollout_state` is one of: * IN_PROGRESS * CANCELLING
  "revisionCreateTime": "A String", # Output only. The timestamp that the revision was created.
  "revisionId": "A String", # Output only. The assignment revision ID A new revision is committed whenever a rollout is triggered for a OS policy assignment
  "rollout": { # Message to configure the rollout at the zonal level for the OS policy assignment. # Required. Rollout to deploy the OS policy assignment. A rollout is triggered in the following situations: 1) OSPolicyAssignment is created. 2) OSPolicyAssignment is updated and the update contains changes to one of the following fields: - instance_filter - os_policies 3) OSPolicyAssignment is deleted.
    "disruptionBudget": { # Message encapsulating a value that can be either absolute ("fixed") or relative ("percent") to a value. # Required. The maximum number (or percentage) of VMs per zone to disrupt at any given moment.
      "fixed": 42, # Specifies a fixed value.
      "percent": 42, # Specifies the relative value defined as a percentage, which will be multiplied by a reference value.
    },
    "minWaitDuration": "A String", # Required. This determines the minimum duration of time to wait after the configuration changes are applied through the current rollout. A VM continues to count towards the `disruption_budget` at least until this duration of time has passed after configuration changes are applied.
  },
  "rolloutState": "A String", # Output only. OS policy assignment rollout state
  "uid": "A String", # Output only. Server generated unique id for the OS policy assignment resource.
}

  updateMask: string, Optional. Field mask that controls which fields of the assignment should be updated.
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # This resource represents a long-running operation that is the result of a network API call.
  "done": True or False, # If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available.
  "error": { # The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). # The error result of the operation in case of failure or cancellation.
    "code": 42, # The status code, which should be an enum value of google.rpc.Code.
    "details": [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
      {
        "a_key": "", # Properties of the object. Contains field @type with type URL.
      },
    ],
    "message": "A String", # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
  },
  "metadata": { # Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such metadata. Any method that returns a long-running operation should document the metadata type, if any.
    "a_key": "", # Properties of the object. Contains field @type with type URL.
  },
  "name": "A String", # The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the `name` should be a resource name ending with `operations/{unique_id}`.
  "response": { # The normal, successful response of the operation. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.
    "a_key": "", # Properties of the object. Contains field @type with type URL.
  },
}