google-apis-assuredworkloads_v1beta1 0.9.0 → 0.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: 15d38b23249be7efa41ae5c4ac2a2bd3711101a4eb9bc3f9022b078c3e42445a
         | 
| 4 | 
            +
              data.tar.gz: 21101e1124f4cb7a0071cdba91e8fca99285cd3d407119c9696caddb1f499154
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: d8b09c125467191d0484a7f877360a13652346deb647cf0b0346ce793101c13ec1a553165fbb59dbe581549f224e0bd944203641018f2fae741b385b41e93e5c
         | 
| 7 | 
            +
              data.tar.gz: ad972bc01434c0dce54d906c04e21631386fb1725d9035c6dfa44b57b529d8dd817bdd2fce8fec2de6326f6acdc0a95de091e78295155b7f34a8b3d2b36fe584
         | 
    
        data/CHANGELOG.md
    CHANGED
    
    | @@ -1,5 +1,13 @@ | |
| 1 1 | 
             
            # Release history for google-apis-assuredworkloads_v1beta1
         | 
| 2 2 |  | 
| 3 | 
            +
            ### v0.11.0 (2023-05-21)
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            * Regenerated from discovery document revision 20230512
         | 
| 6 | 
            +
             | 
| 7 | 
            +
            ### v0.10.0 (2023-04-30)
         | 
| 8 | 
            +
             | 
| 9 | 
            +
            * Regenerated from discovery document revision 20230420
         | 
| 10 | 
            +
             | 
| 3 11 | 
             
            ### v0.9.0 (2023-04-23)
         | 
| 4 12 |  | 
| 5 13 | 
             
            * Regenerated from discovery document revision 20230414
         | 
| @@ -85,6 +85,51 @@ module Google | |
| 85 85 | 
             
                    end
         | 
| 86 86 | 
             
                  end
         | 
| 87 87 |  | 
| 88 | 
            +
                  # Operation metadata to give request details of CreateWorkload.
         | 
| 89 | 
            +
                  class GoogleCloudAssuredworkloadsV1beta1CreateWorkloadOperationMetadata
         | 
| 90 | 
            +
                    include Google::Apis::Core::Hashable
         | 
| 91 | 
            +
                  
         | 
| 92 | 
            +
                    # Optional. Compliance controls that should be applied to the resources managed
         | 
| 93 | 
            +
                    # by the workload.
         | 
| 94 | 
            +
                    # Corresponds to the JSON property `complianceRegime`
         | 
| 95 | 
            +
                    # @return [String]
         | 
| 96 | 
            +
                    attr_accessor :compliance_regime
         | 
| 97 | 
            +
                  
         | 
| 98 | 
            +
                    # Optional. Time when the operation was created.
         | 
| 99 | 
            +
                    # Corresponds to the JSON property `createTime`
         | 
| 100 | 
            +
                    # @return [String]
         | 
| 101 | 
            +
                    attr_accessor :create_time
         | 
| 102 | 
            +
                  
         | 
| 103 | 
            +
                    # Optional. The display name of the workload.
         | 
| 104 | 
            +
                    # Corresponds to the JSON property `displayName`
         | 
| 105 | 
            +
                    # @return [String]
         | 
| 106 | 
            +
                    attr_accessor :display_name
         | 
| 107 | 
            +
                  
         | 
| 108 | 
            +
                    # Optional. The parent of the workload.
         | 
| 109 | 
            +
                    # Corresponds to the JSON property `parent`
         | 
| 110 | 
            +
                    # @return [String]
         | 
| 111 | 
            +
                    attr_accessor :parent
         | 
| 112 | 
            +
                  
         | 
| 113 | 
            +
                    # Optional. Resource properties in the input that are used for creating/
         | 
| 114 | 
            +
                    # customizing workload resources.
         | 
| 115 | 
            +
                    # Corresponds to the JSON property `resourceSettings`
         | 
| 116 | 
            +
                    # @return [Array<Google::Apis::AssuredworkloadsV1beta1::GoogleCloudAssuredworkloadsV1beta1WorkloadResourceSettings>]
         | 
| 117 | 
            +
                    attr_accessor :resource_settings
         | 
| 118 | 
            +
                  
         | 
| 119 | 
            +
                    def initialize(**args)
         | 
| 120 | 
            +
                       update!(**args)
         | 
| 121 | 
            +
                    end
         | 
| 122 | 
            +
                  
         | 
| 123 | 
            +
                    # Update properties of this object
         | 
| 124 | 
            +
                    def update!(**args)
         | 
| 125 | 
            +
                      @compliance_regime = args[:compliance_regime] if args.key?(:compliance_regime)
         | 
| 126 | 
            +
                      @create_time = args[:create_time] if args.key?(:create_time)
         | 
| 127 | 
            +
                      @display_name = args[:display_name] if args.key?(:display_name)
         | 
| 128 | 
            +
                      @parent = args[:parent] if args.key?(:parent)
         | 
| 129 | 
            +
                      @resource_settings = args[:resource_settings] if args.key?(:resource_settings)
         | 
| 130 | 
            +
                    end
         | 
| 131 | 
            +
                  end
         | 
| 132 | 
            +
                  
         | 
| 88 133 | 
             
                  # Response of ListViolations endpoint.
         | 
| 89 134 | 
             
                  class GoogleCloudAssuredworkloadsV1beta1ListViolationsResponse
         | 
| 90 135 | 
             
                    include Google::Apis::Core::Hashable
         | 
| @@ -168,7 +213,7 @@ module Google | |
| 168 213 | 
             
                    end
         | 
| 169 214 | 
             
                  end
         | 
| 170 215 |  | 
| 171 | 
            -
                  # Workload monitoring Violation. Next Id:  | 
| 216 | 
            +
                  # Workload monitoring Violation. Next Id: 27
         | 
| 172 217 | 
             
                  class GoogleCloudAssuredworkloadsV1beta1Violation
         | 
| 173 218 | 
             
                    include Google::Apis::Core::Hashable
         | 
| 174 219 |  | 
| @@ -218,11 +263,6 @@ module Google | |
| 218 263 | 
             
                    # @return [String]
         | 
| 219 264 | 
             
                    attr_accessor :exception_audit_log_link
         | 
| 220 265 |  | 
| 221 | 
            -
                    # Output only. List of all the exception detail added for the violation.
         | 
| 222 | 
            -
                    # Corresponds to the JSON property `exceptionContexts`
         | 
| 223 | 
            -
                    # @return [Array<Google::Apis::AssuredworkloadsV1beta1::GoogleCloudAssuredworkloadsV1beta1ViolationExceptionContext>]
         | 
| 224 | 
            -
                    attr_accessor :exception_contexts
         | 
| 225 | 
            -
                  
         | 
| 226 266 | 
             
                    # Output only. Immutable. Name of the Violation. Format: organizations/`
         | 
| 227 267 | 
             
                    # organization`/locations/`location`/workloads/`workload_id`/violations/`
         | 
| 228 268 | 
             
                    # violations_id`
         | 
| @@ -279,7 +319,6 @@ module Google | |
| 279 319 | 
             
                      @category = args[:category] if args.key?(:category)
         | 
| 280 320 | 
             
                      @description = args[:description] if args.key?(:description)
         | 
| 281 321 | 
             
                      @exception_audit_log_link = args[:exception_audit_log_link] if args.key?(:exception_audit_log_link)
         | 
| 282 | 
            -
                      @exception_contexts = args[:exception_contexts] if args.key?(:exception_contexts)
         | 
| 283 322 | 
             
                      @name = args[:name] if args.key?(:name)
         | 
| 284 323 | 
             
                      @non_compliant_org_policy = args[:non_compliant_org_policy] if args.key?(:non_compliant_org_policy)
         | 
| 285 324 | 
             
                      @org_policy_constraint = args[:org_policy_constraint] if args.key?(:org_policy_constraint)
         | 
| @@ -290,37 +329,6 @@ module Google | |
| 290 329 | 
             
                    end
         | 
| 291 330 | 
             
                  end
         | 
| 292 331 |  | 
| 293 | 
            -
                  # Violation exception detail. Next Id: 5
         | 
| 294 | 
            -
                  class GoogleCloudAssuredworkloadsV1beta1ViolationExceptionContext
         | 
| 295 | 
            -
                    include Google::Apis::Core::Hashable
         | 
| 296 | 
            -
                  
         | 
| 297 | 
            -
                    # Timestamp when the violation was acknowledged.
         | 
| 298 | 
            -
                    # Corresponds to the JSON property `acknowledgementTime`
         | 
| 299 | 
            -
                    # @return [String]
         | 
| 300 | 
            -
                    attr_accessor :acknowledgement_time
         | 
| 301 | 
            -
                  
         | 
| 302 | 
            -
                    # Business justification provided towards the acknowledgement of the violation.
         | 
| 303 | 
            -
                    # Corresponds to the JSON property `comment`
         | 
| 304 | 
            -
                    # @return [String]
         | 
| 305 | 
            -
                    attr_accessor :comment
         | 
| 306 | 
            -
                  
         | 
| 307 | 
            -
                    # Email address of the user (or service account) who acknowledged the violation.
         | 
| 308 | 
            -
                    # Corresponds to the JSON property `principalEmail`
         | 
| 309 | 
            -
                    # @return [String]
         | 
| 310 | 
            -
                    attr_accessor :principal_email
         | 
| 311 | 
            -
                  
         | 
| 312 | 
            -
                    def initialize(**args)
         | 
| 313 | 
            -
                       update!(**args)
         | 
| 314 | 
            -
                    end
         | 
| 315 | 
            -
                  
         | 
| 316 | 
            -
                    # Update properties of this object
         | 
| 317 | 
            -
                    def update!(**args)
         | 
| 318 | 
            -
                      @acknowledgement_time = args[:acknowledgement_time] if args.key?(:acknowledgement_time)
         | 
| 319 | 
            -
                      @comment = args[:comment] if args.key?(:comment)
         | 
| 320 | 
            -
                      @principal_email = args[:principal_email] if args.key?(:principal_email)
         | 
| 321 | 
            -
                    end
         | 
| 322 | 
            -
                  end
         | 
| 323 | 
            -
                  
         | 
| 324 332 | 
             
                  # Represents remediation guidance to resolve compliance violation for
         | 
| 325 333 | 
             
                  # AssuredWorkload
         | 
| 326 334 | 
             
                  class GoogleCloudAssuredworkloadsV1beta1ViolationRemediation
         | 
| @@ -478,6 +486,11 @@ module Google | |
| 478 486 | 
             
                    # @return [Array<String>]
         | 
| 479 487 | 
             
                    attr_accessor :compliant_but_disallowed_services
         | 
| 480 488 |  | 
| 489 | 
            +
                    # Controls enabled to the user associated with this workload
         | 
| 490 | 
            +
                    # Corresponds to the JSON property `controls`
         | 
| 491 | 
            +
                    # @return [Google::Apis::AssuredworkloadsV1beta1::GoogleCloudAssuredworkloadsV1beta1WorkloadComplianceControls]
         | 
| 492 | 
            +
                    attr_accessor :controls
         | 
| 493 | 
            +
                  
         | 
| 481 494 | 
             
                    # Output only. Immutable. The Workload creation timestamp.
         | 
| 482 495 | 
             
                    # Corresponds to the JSON property `createTime`
         | 
| 483 496 | 
             
                    # @return [String]
         | 
| @@ -549,6 +562,11 @@ module Google | |
| 549 562 | 
             
                    # @return [String]
         | 
| 550 563 | 
             
                    attr_accessor :partner
         | 
| 551 564 |  | 
| 565 | 
            +
                    # Permissions granted to the AW Partner SA account for the customer workload
         | 
| 566 | 
            +
                    # Corresponds to the JSON property `partnerPermissions`
         | 
| 567 | 
            +
                    # @return [Google::Apis::AssuredworkloadsV1beta1::GoogleCloudAssuredworkloadsV1beta1WorkloadPartnerPermissions]
         | 
| 568 | 
            +
                    attr_accessor :partner_permissions
         | 
| 569 | 
            +
                  
         | 
| 552 570 | 
             
                    # Input only. The parent resource for the resources managed by this Assured
         | 
| 553 571 | 
             
                    # Workload. May be either empty or a folder resource which is a child of the
         | 
| 554 572 | 
             
                    # Workload parent. If not specified all resources are created under the parent
         | 
| @@ -597,6 +615,7 @@ module Google | |
| 597 615 | 
             
                      @compliance_regime = args[:compliance_regime] if args.key?(:compliance_regime)
         | 
| 598 616 | 
             
                      @compliance_status = args[:compliance_status] if args.key?(:compliance_status)
         | 
| 599 617 | 
             
                      @compliant_but_disallowed_services = args[:compliant_but_disallowed_services] if args.key?(:compliant_but_disallowed_services)
         | 
| 618 | 
            +
                      @controls = args[:controls] if args.key?(:controls)
         | 
| 600 619 | 
             
                      @create_time = args[:create_time] if args.key?(:create_time)
         | 
| 601 620 | 
             
                      @display_name = args[:display_name] if args.key?(:display_name)
         | 
| 602 621 | 
             
                      @ekm_provisioning_response = args[:ekm_provisioning_response] if args.key?(:ekm_provisioning_response)
         | 
| @@ -610,6 +629,7 @@ module Google | |
| 610 629 | 
             
                      @labels = args[:labels] if args.key?(:labels)
         | 
| 611 630 | 
             
                      @name = args[:name] if args.key?(:name)
         | 
| 612 631 | 
             
                      @partner = args[:partner] if args.key?(:partner)
         | 
| 632 | 
            +
                      @partner_permissions = args[:partner_permissions] if args.key?(:partner_permissions)
         | 
| 613 633 | 
             
                      @provisioned_resources_parent = args[:provisioned_resources_parent] if args.key?(:provisioned_resources_parent)
         | 
| 614 634 | 
             
                      @resource_settings = args[:resource_settings] if args.key?(:resource_settings)
         | 
| 615 635 | 
             
                      @resources = args[:resources] if args.key?(:resources)
         | 
| @@ -637,6 +657,51 @@ module Google | |
| 637 657 | 
             
                    end
         | 
| 638 658 | 
             
                  end
         | 
| 639 659 |  | 
| 660 | 
            +
                  # Controls enabled to the user associated with this workload
         | 
| 661 | 
            +
                  class GoogleCloudAssuredworkloadsV1beta1WorkloadComplianceControls
         | 
| 662 | 
            +
                    include Google::Apis::Core::Hashable
         | 
| 663 | 
            +
                  
         | 
| 664 | 
            +
                    # Output only. Org policies currently applied by this Assured Workload
         | 
| 665 | 
            +
                    # Corresponds to the JSON property `appliedOrgPolicies`
         | 
| 666 | 
            +
                    # @return [Array<Google::Apis::AssuredworkloadsV1beta1::GoogleCloudAssuredworkloadsV1beta1WorkloadComplianceControlsOrgPolicyControl>]
         | 
| 667 | 
            +
                    attr_accessor :applied_org_policies
         | 
| 668 | 
            +
                  
         | 
| 669 | 
            +
                    def initialize(**args)
         | 
| 670 | 
            +
                       update!(**args)
         | 
| 671 | 
            +
                    end
         | 
| 672 | 
            +
                  
         | 
| 673 | 
            +
                    # Update properties of this object
         | 
| 674 | 
            +
                    def update!(**args)
         | 
| 675 | 
            +
                      @applied_org_policies = args[:applied_org_policies] if args.key?(:applied_org_policies)
         | 
| 676 | 
            +
                    end
         | 
| 677 | 
            +
                  end
         | 
| 678 | 
            +
                  
         | 
| 679 | 
            +
                  # An org policy control applied by Assured Workloads
         | 
| 680 | 
            +
                  class GoogleCloudAssuredworkloadsV1beta1WorkloadComplianceControlsOrgPolicyControl
         | 
| 681 | 
            +
                    include Google::Apis::Core::Hashable
         | 
| 682 | 
            +
                  
         | 
| 683 | 
            +
                    # Output only. Constraint name of the org policy control Example: constraints/
         | 
| 684 | 
            +
                    # gcp.resourcelocations
         | 
| 685 | 
            +
                    # Corresponds to the JSON property `constraint`
         | 
| 686 | 
            +
                    # @return [String]
         | 
| 687 | 
            +
                    attr_accessor :constraint
         | 
| 688 | 
            +
                  
         | 
| 689 | 
            +
                    # Output only. Org policy version
         | 
| 690 | 
            +
                    # Corresponds to the JSON property `version`
         | 
| 691 | 
            +
                    # @return [Fixnum]
         | 
| 692 | 
            +
                    attr_accessor :version
         | 
| 693 | 
            +
                  
         | 
| 694 | 
            +
                    def initialize(**args)
         | 
| 695 | 
            +
                       update!(**args)
         | 
| 696 | 
            +
                    end
         | 
| 697 | 
            +
                  
         | 
| 698 | 
            +
                    # Update properties of this object
         | 
| 699 | 
            +
                    def update!(**args)
         | 
| 700 | 
            +
                      @constraint = args[:constraint] if args.key?(:constraint)
         | 
| 701 | 
            +
                      @version = args[:version] if args.key?(:version)
         | 
| 702 | 
            +
                    end
         | 
| 703 | 
            +
                  end
         | 
| 704 | 
            +
                  
         | 
| 640 705 | 
             
                  # Represents the Compliance Status of this workload
         | 
| 641 706 | 
             
                  class GoogleCloudAssuredworkloadsV1beta1WorkloadComplianceStatus
         | 
| 642 707 | 
             
                    include Google::Apis::Core::Hashable
         | 
| @@ -779,6 +844,33 @@ module Google | |
| 779 844 | 
             
                    end
         | 
| 780 845 | 
             
                  end
         | 
| 781 846 |  | 
| 847 | 
            +
                  # Permissions granted to the AW Partner SA account for the customer workload
         | 
| 848 | 
            +
                  class GoogleCloudAssuredworkloadsV1beta1WorkloadPartnerPermissions
         | 
| 849 | 
            +
                    include Google::Apis::Core::Hashable
         | 
| 850 | 
            +
                  
         | 
| 851 | 
            +
                    # Allow the partner to view inspectability logs and monitoring violations.
         | 
| 852 | 
            +
                    # Corresponds to the JSON property `dataLogsViewer`
         | 
| 853 | 
            +
                    # @return [Boolean]
         | 
| 854 | 
            +
                    attr_accessor :data_logs_viewer
         | 
| 855 | 
            +
                    alias_method :data_logs_viewer?, :data_logs_viewer
         | 
| 856 | 
            +
                  
         | 
| 857 | 
            +
                    # Allow partner to monitor folder and remediate violations
         | 
| 858 | 
            +
                    # Corresponds to the JSON property `remediateFolderViolations`
         | 
| 859 | 
            +
                    # @return [Boolean]
         | 
| 860 | 
            +
                    attr_accessor :remediate_folder_violations
         | 
| 861 | 
            +
                    alias_method :remediate_folder_violations?, :remediate_folder_violations
         | 
| 862 | 
            +
                  
         | 
| 863 | 
            +
                    def initialize(**args)
         | 
| 864 | 
            +
                       update!(**args)
         | 
| 865 | 
            +
                    end
         | 
| 866 | 
            +
                  
         | 
| 867 | 
            +
                    # Update properties of this object
         | 
| 868 | 
            +
                    def update!(**args)
         | 
| 869 | 
            +
                      @data_logs_viewer = args[:data_logs_viewer] if args.key?(:data_logs_viewer)
         | 
| 870 | 
            +
                      @remediate_folder_violations = args[:remediate_folder_violations] if args.key?(:remediate_folder_violations)
         | 
| 871 | 
            +
                    end
         | 
| 872 | 
            +
                  end
         | 
| 873 | 
            +
                  
         | 
| 782 874 | 
             
                  # Represent the resources that are children of this Workload.
         | 
| 783 875 | 
             
                  class GoogleCloudAssuredworkloadsV1beta1WorkloadResourceInfo
         | 
| 784 876 | 
             
                    include Google::Apis::Core::Hashable
         | 
| @@ -16,13 +16,13 @@ module Google | |
| 16 16 | 
             
              module Apis
         | 
| 17 17 | 
             
                module AssuredworkloadsV1beta1
         | 
| 18 18 | 
             
                  # Version of the google-apis-assuredworkloads_v1beta1 gem
         | 
| 19 | 
            -
                  GEM_VERSION = "0. | 
| 19 | 
            +
                  GEM_VERSION = "0.11.0"
         | 
| 20 20 |  | 
| 21 21 | 
             
                  # Version of the code generator used to generate this client
         | 
| 22 22 | 
             
                  GENERATOR_VERSION = "0.12.0"
         | 
| 23 23 |  | 
| 24 24 | 
             
                  # Revision of the discovery document this client was generated from
         | 
| 25 | 
            -
                  REVISION = " | 
| 25 | 
            +
                  REVISION = "20230512"
         | 
| 26 26 | 
             
                end
         | 
| 27 27 | 
             
              end
         | 
| 28 28 | 
             
            end
         | 
| @@ -40,37 +40,37 @@ module Google | |
| 40 40 | 
             
                    include Google::Apis::Core::JsonObjectSupport
         | 
| 41 41 | 
             
                  end
         | 
| 42 42 |  | 
| 43 | 
            -
                  class  | 
| 43 | 
            +
                  class GoogleCloudAssuredworkloadsV1beta1CreateWorkloadOperationMetadata
         | 
| 44 44 | 
             
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         | 
| 45 45 |  | 
| 46 46 | 
             
                    include Google::Apis::Core::JsonObjectSupport
         | 
| 47 47 | 
             
                  end
         | 
| 48 48 |  | 
| 49 | 
            -
                  class  | 
| 49 | 
            +
                  class GoogleCloudAssuredworkloadsV1beta1ListViolationsResponse
         | 
| 50 50 | 
             
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         | 
| 51 51 |  | 
| 52 52 | 
             
                    include Google::Apis::Core::JsonObjectSupport
         | 
| 53 53 | 
             
                  end
         | 
| 54 54 |  | 
| 55 | 
            -
                  class  | 
| 55 | 
            +
                  class GoogleCloudAssuredworkloadsV1beta1ListWorkloadsResponse
         | 
| 56 56 | 
             
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         | 
| 57 57 |  | 
| 58 58 | 
             
                    include Google::Apis::Core::JsonObjectSupport
         | 
| 59 59 | 
             
                  end
         | 
| 60 60 |  | 
| 61 | 
            -
                  class  | 
| 61 | 
            +
                  class GoogleCloudAssuredworkloadsV1beta1RestrictAllowedResourcesRequest
         | 
| 62 62 | 
             
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         | 
| 63 63 |  | 
| 64 64 | 
             
                    include Google::Apis::Core::JsonObjectSupport
         | 
| 65 65 | 
             
                  end
         | 
| 66 66 |  | 
| 67 | 
            -
                  class  | 
| 67 | 
            +
                  class GoogleCloudAssuredworkloadsV1beta1RestrictAllowedResourcesResponse
         | 
| 68 68 | 
             
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         | 
| 69 69 |  | 
| 70 70 | 
             
                    include Google::Apis::Core::JsonObjectSupport
         | 
| 71 71 | 
             
                  end
         | 
| 72 72 |  | 
| 73 | 
            -
                  class  | 
| 73 | 
            +
                  class GoogleCloudAssuredworkloadsV1beta1Violation
         | 
| 74 74 | 
             
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         | 
| 75 75 |  | 
| 76 76 | 
             
                    include Google::Apis::Core::JsonObjectSupport
         | 
| @@ -112,6 +112,18 @@ module Google | |
| 112 112 | 
             
                    include Google::Apis::Core::JsonObjectSupport
         | 
| 113 113 | 
             
                  end
         | 
| 114 114 |  | 
| 115 | 
            +
                  class GoogleCloudAssuredworkloadsV1beta1WorkloadComplianceControls
         | 
| 116 | 
            +
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         | 
| 117 | 
            +
                  
         | 
| 118 | 
            +
                    include Google::Apis::Core::JsonObjectSupport
         | 
| 119 | 
            +
                  end
         | 
| 120 | 
            +
                  
         | 
| 121 | 
            +
                  class GoogleCloudAssuredworkloadsV1beta1WorkloadComplianceControlsOrgPolicyControl
         | 
| 122 | 
            +
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         | 
| 123 | 
            +
                  
         | 
| 124 | 
            +
                    include Google::Apis::Core::JsonObjectSupport
         | 
| 125 | 
            +
                  end
         | 
| 126 | 
            +
                  
         | 
| 115 127 | 
             
                  class GoogleCloudAssuredworkloadsV1beta1WorkloadComplianceStatus
         | 
| 116 128 | 
             
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         | 
| 117 129 |  | 
| @@ -148,6 +160,12 @@ module Google | |
| 148 160 | 
             
                    include Google::Apis::Core::JsonObjectSupport
         | 
| 149 161 | 
             
                  end
         | 
| 150 162 |  | 
| 163 | 
            +
                  class GoogleCloudAssuredworkloadsV1beta1WorkloadPartnerPermissions
         | 
| 164 | 
            +
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         | 
| 165 | 
            +
                  
         | 
| 166 | 
            +
                    include Google::Apis::Core::JsonObjectSupport
         | 
| 167 | 
            +
                  end
         | 
| 168 | 
            +
                  
         | 
| 151 169 | 
             
                  class GoogleCloudAssuredworkloadsV1beta1WorkloadResourceInfo
         | 
| 152 170 | 
             
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         | 
| 153 171 |  | 
| @@ -211,6 +229,18 @@ module Google | |
| 211 229 | 
             
                    end
         | 
| 212 230 | 
             
                  end
         | 
| 213 231 |  | 
| 232 | 
            +
                  class GoogleCloudAssuredworkloadsV1beta1CreateWorkloadOperationMetadata
         | 
| 233 | 
            +
                    # @private
         | 
| 234 | 
            +
                    class Representation < Google::Apis::Core::JsonRepresentation
         | 
| 235 | 
            +
                      property :compliance_regime, as: 'complianceRegime'
         | 
| 236 | 
            +
                      property :create_time, as: 'createTime'
         | 
| 237 | 
            +
                      property :display_name, as: 'displayName'
         | 
| 238 | 
            +
                      property :parent, as: 'parent'
         | 
| 239 | 
            +
                      collection :resource_settings, as: 'resourceSettings', class: Google::Apis::AssuredworkloadsV1beta1::GoogleCloudAssuredworkloadsV1beta1WorkloadResourceSettings, decorator: Google::Apis::AssuredworkloadsV1beta1::GoogleCloudAssuredworkloadsV1beta1WorkloadResourceSettings::Representation
         | 
| 240 | 
            +
                  
         | 
| 241 | 
            +
                    end
         | 
| 242 | 
            +
                  end
         | 
| 243 | 
            +
                  
         | 
| 214 244 | 
             
                  class GoogleCloudAssuredworkloadsV1beta1ListViolationsResponse
         | 
| 215 245 | 
             
                    # @private
         | 
| 216 246 | 
             
                    class Representation < Google::Apis::Core::JsonRepresentation
         | 
| @@ -252,8 +282,6 @@ module Google | |
| 252 282 | 
             
                      property :category, as: 'category'
         | 
| 253 283 | 
             
                      property :description, as: 'description'
         | 
| 254 284 | 
             
                      property :exception_audit_log_link, as: 'exceptionAuditLogLink'
         | 
| 255 | 
            -
                      collection :exception_contexts, as: 'exceptionContexts', class: Google::Apis::AssuredworkloadsV1beta1::GoogleCloudAssuredworkloadsV1beta1ViolationExceptionContext, decorator: Google::Apis::AssuredworkloadsV1beta1::GoogleCloudAssuredworkloadsV1beta1ViolationExceptionContext::Representation
         | 
| 256 | 
            -
                  
         | 
| 257 285 | 
             
                      property :name, as: 'name'
         | 
| 258 286 | 
             
                      property :non_compliant_org_policy, as: 'nonCompliantOrgPolicy'
         | 
| 259 287 | 
             
                      property :org_policy_constraint, as: 'orgPolicyConstraint'
         | 
| @@ -265,15 +293,6 @@ module Google | |
| 265 293 | 
             
                    end
         | 
| 266 294 | 
             
                  end
         | 
| 267 295 |  | 
| 268 | 
            -
                  class GoogleCloudAssuredworkloadsV1beta1ViolationExceptionContext
         | 
| 269 | 
            -
                    # @private
         | 
| 270 | 
            -
                    class Representation < Google::Apis::Core::JsonRepresentation
         | 
| 271 | 
            -
                      property :acknowledgement_time, as: 'acknowledgementTime'
         | 
| 272 | 
            -
                      property :comment, as: 'comment'
         | 
| 273 | 
            -
                      property :principal_email, as: 'principalEmail'
         | 
| 274 | 
            -
                    end
         | 
| 275 | 
            -
                  end
         | 
| 276 | 
            -
                  
         | 
| 277 296 | 
             
                  class GoogleCloudAssuredworkloadsV1beta1ViolationRemediation
         | 
| 278 297 | 
             
                    # @private
         | 
| 279 298 | 
             
                    class Representation < Google::Apis::Core::JsonRepresentation
         | 
| @@ -322,6 +341,8 @@ module Google | |
| 322 341 | 
             
                      property :compliance_status, as: 'complianceStatus', class: Google::Apis::AssuredworkloadsV1beta1::GoogleCloudAssuredworkloadsV1beta1WorkloadComplianceStatus, decorator: Google::Apis::AssuredworkloadsV1beta1::GoogleCloudAssuredworkloadsV1beta1WorkloadComplianceStatus::Representation
         | 
| 323 342 |  | 
| 324 343 | 
             
                      collection :compliant_but_disallowed_services, as: 'compliantButDisallowedServices'
         | 
| 344 | 
            +
                      property :controls, as: 'controls', class: Google::Apis::AssuredworkloadsV1beta1::GoogleCloudAssuredworkloadsV1beta1WorkloadComplianceControls, decorator: Google::Apis::AssuredworkloadsV1beta1::GoogleCloudAssuredworkloadsV1beta1WorkloadComplianceControls::Representation
         | 
| 345 | 
            +
                  
         | 
| 325 346 | 
             
                      property :create_time, as: 'createTime'
         | 
| 326 347 | 
             
                      property :display_name, as: 'displayName'
         | 
| 327 348 | 
             
                      property :ekm_provisioning_response, as: 'ekmProvisioningResponse', class: Google::Apis::AssuredworkloadsV1beta1::GoogleCloudAssuredworkloadsV1beta1WorkloadEkmProvisioningResponse, decorator: Google::Apis::AssuredworkloadsV1beta1::GoogleCloudAssuredworkloadsV1beta1WorkloadEkmProvisioningResponse::Representation
         | 
| @@ -340,6 +361,8 @@ module Google | |
| 340 361 | 
             
                      hash :labels, as: 'labels'
         | 
| 341 362 | 
             
                      property :name, as: 'name'
         | 
| 342 363 | 
             
                      property :partner, as: 'partner'
         | 
| 364 | 
            +
                      property :partner_permissions, as: 'partnerPermissions', class: Google::Apis::AssuredworkloadsV1beta1::GoogleCloudAssuredworkloadsV1beta1WorkloadPartnerPermissions, decorator: Google::Apis::AssuredworkloadsV1beta1::GoogleCloudAssuredworkloadsV1beta1WorkloadPartnerPermissions::Representation
         | 
| 365 | 
            +
                  
         | 
| 343 366 | 
             
                      property :provisioned_resources_parent, as: 'provisionedResourcesParent'
         | 
| 344 367 | 
             
                      collection :resource_settings, as: 'resourceSettings', class: Google::Apis::AssuredworkloadsV1beta1::GoogleCloudAssuredworkloadsV1beta1WorkloadResourceSettings, decorator: Google::Apis::AssuredworkloadsV1beta1::GoogleCloudAssuredworkloadsV1beta1WorkloadResourceSettings::Representation
         | 
| 345 368 |  | 
| @@ -359,6 +382,22 @@ module Google | |
| 359 382 | 
             
                    end
         | 
| 360 383 | 
             
                  end
         | 
| 361 384 |  | 
| 385 | 
            +
                  class GoogleCloudAssuredworkloadsV1beta1WorkloadComplianceControls
         | 
| 386 | 
            +
                    # @private
         | 
| 387 | 
            +
                    class Representation < Google::Apis::Core::JsonRepresentation
         | 
| 388 | 
            +
                      collection :applied_org_policies, as: 'appliedOrgPolicies', class: Google::Apis::AssuredworkloadsV1beta1::GoogleCloudAssuredworkloadsV1beta1WorkloadComplianceControlsOrgPolicyControl, decorator: Google::Apis::AssuredworkloadsV1beta1::GoogleCloudAssuredworkloadsV1beta1WorkloadComplianceControlsOrgPolicyControl::Representation
         | 
| 389 | 
            +
                  
         | 
| 390 | 
            +
                    end
         | 
| 391 | 
            +
                  end
         | 
| 392 | 
            +
                  
         | 
| 393 | 
            +
                  class GoogleCloudAssuredworkloadsV1beta1WorkloadComplianceControlsOrgPolicyControl
         | 
| 394 | 
            +
                    # @private
         | 
| 395 | 
            +
                    class Representation < Google::Apis::Core::JsonRepresentation
         | 
| 396 | 
            +
                      property :constraint, as: 'constraint'
         | 
| 397 | 
            +
                      property :version, as: 'version'
         | 
| 398 | 
            +
                    end
         | 
| 399 | 
            +
                  end
         | 
| 400 | 
            +
                  
         | 
| 362 401 | 
             
                  class GoogleCloudAssuredworkloadsV1beta1WorkloadComplianceStatus
         | 
| 363 402 | 
             
                    # @private
         | 
| 364 403 | 
             
                    class Representation < Google::Apis::Core::JsonRepresentation
         | 
| @@ -408,6 +447,14 @@ module Google | |
| 408 447 | 
             
                    end
         | 
| 409 448 | 
             
                  end
         | 
| 410 449 |  | 
| 450 | 
            +
                  class GoogleCloudAssuredworkloadsV1beta1WorkloadPartnerPermissions
         | 
| 451 | 
            +
                    # @private
         | 
| 452 | 
            +
                    class Representation < Google::Apis::Core::JsonRepresentation
         | 
| 453 | 
            +
                      property :data_logs_viewer, as: 'dataLogsViewer'
         | 
| 454 | 
            +
                      property :remediate_folder_violations, as: 'remediateFolderViolations'
         | 
| 455 | 
            +
                    end
         | 
| 456 | 
            +
                  end
         | 
| 457 | 
            +
                  
         | 
| 411 458 | 
             
                  class GoogleCloudAssuredworkloadsV1beta1WorkloadResourceInfo
         | 
| 412 459 | 
             
                    # @private
         | 
| 413 460 | 
             
                    class Representation < Google::Apis::Core::JsonRepresentation
         | 
    
        metadata
    CHANGED
    
    | @@ -1,14 +1,14 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: google-apis-assuredworkloads_v1beta1
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 0. | 
| 4 | 
            +
              version: 0.11.0
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - Google LLC
         | 
| 8 8 | 
             
            autorequire: 
         | 
| 9 9 | 
             
            bindir: bin
         | 
| 10 10 | 
             
            cert_chain: []
         | 
| 11 | 
            -
            date: 2023- | 
| 11 | 
            +
            date: 2023-05-21 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: google-apis-core
         | 
| @@ -58,7 +58,7 @@ licenses: | |
| 58 58 | 
             
            metadata:
         | 
| 59 59 | 
             
              bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
         | 
| 60 60 | 
             
              changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-assuredworkloads_v1beta1/CHANGELOG.md
         | 
| 61 | 
            -
              documentation_uri: https://googleapis.dev/ruby/google-apis-assuredworkloads_v1beta1/v0. | 
| 61 | 
            +
              documentation_uri: https://googleapis.dev/ruby/google-apis-assuredworkloads_v1beta1/v0.11.0
         | 
| 62 62 | 
             
              source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-assuredworkloads_v1beta1
         | 
| 63 63 | 
             
            post_install_message: 
         | 
| 64 64 | 
             
            rdoc_options: []
         |