google-apis-assuredworkloads_v1 0.12.0 → 0.13.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5fc664d2a8fdefaf439bc78474b43814d078e73996ecf318d6ba6bc221d379a3
4
- data.tar.gz: 2b34e682c94c2d7730069d9254ad91eeb0b80c14b36f70f71cb9c364cd1db67e
3
+ metadata.gz: 817dc71ee5a64c9cbcb40ee2b0c7f8fd732b6e0b84a2983dd186e2543de174dd
4
+ data.tar.gz: 3cf53bebb76d5ef9b8bab7db3c5461b5bbc0ce7a28cef058129dfef469739af8
5
5
  SHA512:
6
- metadata.gz: 8dd374ffd6340bfa5b8184683f7c1d7822fc0a959797f1e5aa92558bab0a0be282473be56a9ff18905e3ea42be7f15312edb517e20975538eed52ecb14d140c1
7
- data.tar.gz: 86d6a6cc9773a65ddc272b2f1fa088ed2383efbbeb58b21b44a22e0c6d079be46e2e334af27f8104099222736b7a8d6ab4b9b8ce4bd3913598f4be789851aad6
6
+ metadata.gz: 748efa48e9e978b57c8d6aaca92e478e0942073ba7ac4c105410a7a9326a408b725777b165655f7ab7868804db1240b03df656a8099fcc644ab0b82f765b3cf2
7
+ data.tar.gz: 32514c31161fd8bdf780f9c64f72f668f5c0436b7ecf5b00f94a043258235211d370b873e0e1d2593de74d582734656ad3af0606535df22ac2b2492a02df2969
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-assuredworkloads_v1
2
2
 
3
+ ### v0.13.0 (2021-11-16)
4
+
5
+ * Regenerated from discovery document revision 20211111
6
+
3
7
  ### v0.12.0 (2021-10-20)
4
8
 
5
9
  * Unspecified changes
@@ -596,6 +596,334 @@ module Google
596
596
  end
597
597
  end
598
598
 
599
+ # Operation metadata to give request details of CreateWorkload.
600
+ class GoogleCloudAssuredworkloadsVersioningV1mainCreateWorkloadOperationMetadata
601
+ include Google::Apis::Core::Hashable
602
+
603
+ # Optional. Compliance controls that should be applied to the resources managed
604
+ # by the workload.
605
+ # Corresponds to the JSON property `complianceRegime`
606
+ # @return [String]
607
+ attr_accessor :compliance_regime
608
+
609
+ # Optional. Time when the operation was created.
610
+ # Corresponds to the JSON property `createTime`
611
+ # @return [String]
612
+ attr_accessor :create_time
613
+
614
+ # Optional. The display name of the workload.
615
+ # Corresponds to the JSON property `displayName`
616
+ # @return [String]
617
+ attr_accessor :display_name
618
+
619
+ # Optional. The parent of the workload.
620
+ # Corresponds to the JSON property `parent`
621
+ # @return [String]
622
+ attr_accessor :parent
623
+
624
+ # Optional. Resource properties in the input that are used for creating/
625
+ # customizing workload resources.
626
+ # Corresponds to the JSON property `resourceSettings`
627
+ # @return [Array<Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsVersioningV1mainWorkloadResourceSettings>]
628
+ attr_accessor :resource_settings
629
+
630
+ def initialize(**args)
631
+ update!(**args)
632
+ end
633
+
634
+ # Update properties of this object
635
+ def update!(**args)
636
+ @compliance_regime = args[:compliance_regime] if args.key?(:compliance_regime)
637
+ @create_time = args[:create_time] if args.key?(:create_time)
638
+ @display_name = args[:display_name] if args.key?(:display_name)
639
+ @parent = args[:parent] if args.key?(:parent)
640
+ @resource_settings = args[:resource_settings] if args.key?(:resource_settings)
641
+ end
642
+ end
643
+
644
+ # An Workload object for managing highly regulated workloads of cloud customers.
645
+ class GoogleCloudAssuredworkloadsVersioningV1mainWorkload
646
+ include Google::Apis::Core::Hashable
647
+
648
+ # Input only. The billing account used for the resources which are direct
649
+ # children of workload. This billing account is initially associated with the
650
+ # resources created as part of Workload creation. After the initial creation of
651
+ # these resources, the customer can change the assigned billing account. The
652
+ # resource name has the form `billingAccounts/`billing_account_id``. For example,
653
+ # `billingAccounts/012345-567890-ABCDEF`.
654
+ # Corresponds to the JSON property `billingAccount`
655
+ # @return [String]
656
+ attr_accessor :billing_account
657
+
658
+ # Settings specific to resources needed for CJIS.
659
+ # Corresponds to the JSON property `cjisSettings`
660
+ # @return [Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsVersioningV1mainWorkloadCjisSettings]
661
+ attr_accessor :cjis_settings
662
+
663
+ # Required. Immutable. Compliance Regime associated with this workload.
664
+ # Corresponds to the JSON property `complianceRegime`
665
+ # @return [String]
666
+ attr_accessor :compliance_regime
667
+
668
+ # Output only. Immutable. The Workload creation timestamp.
669
+ # Corresponds to the JSON property `createTime`
670
+ # @return [String]
671
+ attr_accessor :create_time
672
+
673
+ # Required. The user-assigned display name of the Workload. When present it must
674
+ # be between 4 to 30 characters. Allowed characters are: lowercase and uppercase
675
+ # letters, numbers, hyphen, and spaces. Example: My Workload
676
+ # Corresponds to the JSON property `displayName`
677
+ # @return [String]
678
+ attr_accessor :display_name
679
+
680
+ # Optional. ETag of the workload, it is calculated on the basis of the Workload
681
+ # contents. It will be used in Update & Delete operations.
682
+ # Corresponds to the JSON property `etag`
683
+ # @return [String]
684
+ attr_accessor :etag
685
+
686
+ # Settings specific to resources needed for FedRAMP High.
687
+ # Corresponds to the JSON property `fedrampHighSettings`
688
+ # @return [Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsVersioningV1mainWorkloadFedrampHighSettings]
689
+ attr_accessor :fedramp_high_settings
690
+
691
+ # Settings specific to resources needed for FedRAMP Moderate.
692
+ # Corresponds to the JSON property `fedrampModerateSettings`
693
+ # @return [Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsVersioningV1mainWorkloadFedrampModerateSettings]
694
+ attr_accessor :fedramp_moderate_settings
695
+
696
+ # Settings specific to resources needed for IL4.
697
+ # Corresponds to the JSON property `il4Settings`
698
+ # @return [Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsVersioningV1mainWorkloadIl4Settings]
699
+ attr_accessor :il4_settings
700
+
701
+ # Settings specific to the Key Management Service.
702
+ # Corresponds to the JSON property `kmsSettings`
703
+ # @return [Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsVersioningV1mainWorkloadKmsSettings]
704
+ attr_accessor :kms_settings
705
+
706
+ # Optional. Labels applied to the workload.
707
+ # Corresponds to the JSON property `labels`
708
+ # @return [Hash<String,String>]
709
+ attr_accessor :labels
710
+
711
+ # Optional. The resource name of the workload. Format: organizations/`
712
+ # organization`/locations/`location`/workloads/`workload` Read-only.
713
+ # Corresponds to the JSON property `name`
714
+ # @return [String]
715
+ attr_accessor :name
716
+
717
+ # Input only. The parent resource for the resources managed by this Assured
718
+ # Workload. May be either empty or a folder resource which is a child of the
719
+ # Workload parent. If not specified all resources are created under the parent
720
+ # organization. Format: folders/`folder_id`
721
+ # Corresponds to the JSON property `provisionedResourcesParent`
722
+ # @return [String]
723
+ attr_accessor :provisioned_resources_parent
724
+
725
+ # Input only. Resource properties that are used to customize workload resources.
726
+ # These properties (such as custom project id) will be used to create workload
727
+ # resources if possible. This field is optional.
728
+ # Corresponds to the JSON property `resourceSettings`
729
+ # @return [Array<Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsVersioningV1mainWorkloadResourceSettings>]
730
+ attr_accessor :resource_settings
731
+
732
+ # Output only. The resources associated with this workload. These resources will
733
+ # be created when creating the workload. If any of the projects already exist,
734
+ # the workload creation will fail. Always read only.
735
+ # Corresponds to the JSON property `resources`
736
+ # @return [Array<Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsVersioningV1mainWorkloadResourceInfo>]
737
+ attr_accessor :resources
738
+
739
+ def initialize(**args)
740
+ update!(**args)
741
+ end
742
+
743
+ # Update properties of this object
744
+ def update!(**args)
745
+ @billing_account = args[:billing_account] if args.key?(:billing_account)
746
+ @cjis_settings = args[:cjis_settings] if args.key?(:cjis_settings)
747
+ @compliance_regime = args[:compliance_regime] if args.key?(:compliance_regime)
748
+ @create_time = args[:create_time] if args.key?(:create_time)
749
+ @display_name = args[:display_name] if args.key?(:display_name)
750
+ @etag = args[:etag] if args.key?(:etag)
751
+ @fedramp_high_settings = args[:fedramp_high_settings] if args.key?(:fedramp_high_settings)
752
+ @fedramp_moderate_settings = args[:fedramp_moderate_settings] if args.key?(:fedramp_moderate_settings)
753
+ @il4_settings = args[:il4_settings] if args.key?(:il4_settings)
754
+ @kms_settings = args[:kms_settings] if args.key?(:kms_settings)
755
+ @labels = args[:labels] if args.key?(:labels)
756
+ @name = args[:name] if args.key?(:name)
757
+ @provisioned_resources_parent = args[:provisioned_resources_parent] if args.key?(:provisioned_resources_parent)
758
+ @resource_settings = args[:resource_settings] if args.key?(:resource_settings)
759
+ @resources = args[:resources] if args.key?(:resources)
760
+ end
761
+ end
762
+
763
+ # Settings specific to resources needed for CJIS.
764
+ class GoogleCloudAssuredworkloadsVersioningV1mainWorkloadCjisSettings
765
+ include Google::Apis::Core::Hashable
766
+
767
+ # Settings specific to the Key Management Service.
768
+ # Corresponds to the JSON property `kmsSettings`
769
+ # @return [Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsVersioningV1mainWorkloadKmsSettings]
770
+ attr_accessor :kms_settings
771
+
772
+ def initialize(**args)
773
+ update!(**args)
774
+ end
775
+
776
+ # Update properties of this object
777
+ def update!(**args)
778
+ @kms_settings = args[:kms_settings] if args.key?(:kms_settings)
779
+ end
780
+ end
781
+
782
+ # Settings specific to resources needed for FedRAMP High.
783
+ class GoogleCloudAssuredworkloadsVersioningV1mainWorkloadFedrampHighSettings
784
+ include Google::Apis::Core::Hashable
785
+
786
+ # Settings specific to the Key Management Service.
787
+ # Corresponds to the JSON property `kmsSettings`
788
+ # @return [Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsVersioningV1mainWorkloadKmsSettings]
789
+ attr_accessor :kms_settings
790
+
791
+ def initialize(**args)
792
+ update!(**args)
793
+ end
794
+
795
+ # Update properties of this object
796
+ def update!(**args)
797
+ @kms_settings = args[:kms_settings] if args.key?(:kms_settings)
798
+ end
799
+ end
800
+
801
+ # Settings specific to resources needed for FedRAMP Moderate.
802
+ class GoogleCloudAssuredworkloadsVersioningV1mainWorkloadFedrampModerateSettings
803
+ include Google::Apis::Core::Hashable
804
+
805
+ # Settings specific to the Key Management Service.
806
+ # Corresponds to the JSON property `kmsSettings`
807
+ # @return [Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsVersioningV1mainWorkloadKmsSettings]
808
+ attr_accessor :kms_settings
809
+
810
+ def initialize(**args)
811
+ update!(**args)
812
+ end
813
+
814
+ # Update properties of this object
815
+ def update!(**args)
816
+ @kms_settings = args[:kms_settings] if args.key?(:kms_settings)
817
+ end
818
+ end
819
+
820
+ # Settings specific to resources needed for IL4.
821
+ class GoogleCloudAssuredworkloadsVersioningV1mainWorkloadIl4Settings
822
+ include Google::Apis::Core::Hashable
823
+
824
+ # Settings specific to the Key Management Service.
825
+ # Corresponds to the JSON property `kmsSettings`
826
+ # @return [Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsVersioningV1mainWorkloadKmsSettings]
827
+ attr_accessor :kms_settings
828
+
829
+ def initialize(**args)
830
+ update!(**args)
831
+ end
832
+
833
+ # Update properties of this object
834
+ def update!(**args)
835
+ @kms_settings = args[:kms_settings] if args.key?(:kms_settings)
836
+ end
837
+ end
838
+
839
+ # Settings specific to the Key Management Service.
840
+ class GoogleCloudAssuredworkloadsVersioningV1mainWorkloadKmsSettings
841
+ include Google::Apis::Core::Hashable
842
+
843
+ # Required. Input only. Immutable. The time at which the Key Management Service
844
+ # will automatically create a new version of the crypto key and mark it as the
845
+ # primary.
846
+ # Corresponds to the JSON property `nextRotationTime`
847
+ # @return [String]
848
+ attr_accessor :next_rotation_time
849
+
850
+ # Required. Input only. Immutable. [next_rotation_time] will be advanced by this
851
+ # period when the Key Management Service automatically rotates a key. Must be at
852
+ # least 24 hours and at most 876,000 hours.
853
+ # Corresponds to the JSON property `rotationPeriod`
854
+ # @return [String]
855
+ attr_accessor :rotation_period
856
+
857
+ def initialize(**args)
858
+ update!(**args)
859
+ end
860
+
861
+ # Update properties of this object
862
+ def update!(**args)
863
+ @next_rotation_time = args[:next_rotation_time] if args.key?(:next_rotation_time)
864
+ @rotation_period = args[:rotation_period] if args.key?(:rotation_period)
865
+ end
866
+ end
867
+
868
+ # Represent the resources that are children of this Workload.
869
+ class GoogleCloudAssuredworkloadsVersioningV1mainWorkloadResourceInfo
870
+ include Google::Apis::Core::Hashable
871
+
872
+ # Resource identifier. For a project this represents project_number.
873
+ # Corresponds to the JSON property `resourceId`
874
+ # @return [Fixnum]
875
+ attr_accessor :resource_id
876
+
877
+ # Indicates the type of resource.
878
+ # Corresponds to the JSON property `resourceType`
879
+ # @return [String]
880
+ attr_accessor :resource_type
881
+
882
+ def initialize(**args)
883
+ update!(**args)
884
+ end
885
+
886
+ # Update properties of this object
887
+ def update!(**args)
888
+ @resource_id = args[:resource_id] if args.key?(:resource_id)
889
+ @resource_type = args[:resource_type] if args.key?(:resource_type)
890
+ end
891
+ end
892
+
893
+ # Represent the custom settings for the resources to be created.
894
+ class GoogleCloudAssuredworkloadsVersioningV1mainWorkloadResourceSettings
895
+ include Google::Apis::Core::Hashable
896
+
897
+ # User-assigned resource display name. If not empty it will be used to create a
898
+ # resource with the specified name.
899
+ # Corresponds to the JSON property `displayName`
900
+ # @return [String]
901
+ attr_accessor :display_name
902
+
903
+ # Resource identifier. For a project this represents project_id. If the project
904
+ # is already taken, the workload creation will fail.
905
+ # Corresponds to the JSON property `resourceId`
906
+ # @return [String]
907
+ attr_accessor :resource_id
908
+
909
+ # Indicates the type of resource. This field should be specified to correspond
910
+ # the id to the right project type (CONSUMER_PROJECT or ENCRYPTION_KEYS_PROJECT)
911
+ # Corresponds to the JSON property `resourceType`
912
+ # @return [String]
913
+ attr_accessor :resource_type
914
+
915
+ def initialize(**args)
916
+ update!(**args)
917
+ end
918
+
919
+ # Update properties of this object
920
+ def update!(**args)
921
+ @display_name = args[:display_name] if args.key?(:display_name)
922
+ @resource_id = args[:resource_id] if args.key?(:resource_id)
923
+ @resource_type = args[:resource_type] if args.key?(:resource_type)
924
+ end
925
+ end
926
+
599
927
  # The response message for Operations.ListOperations.
600
928
  class GoogleLongrunningListOperationsResponse
601
929
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module AssuredworkloadsV1
18
18
  # Version of the google-apis-assuredworkloads_v1 gem
19
- GEM_VERSION = "0.12.0"
19
+ GEM_VERSION = "0.13.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210916"
25
+ REVISION = "20211111"
26
26
  end
27
27
  end
28
28
  end
@@ -112,6 +112,60 @@ module Google
112
112
  include Google::Apis::Core::JsonObjectSupport
113
113
  end
114
114
 
115
+ class GoogleCloudAssuredworkloadsVersioningV1mainCreateWorkloadOperationMetadata
116
+ class Representation < Google::Apis::Core::JsonRepresentation; end
117
+
118
+ include Google::Apis::Core::JsonObjectSupport
119
+ end
120
+
121
+ class GoogleCloudAssuredworkloadsVersioningV1mainWorkload
122
+ class Representation < Google::Apis::Core::JsonRepresentation; end
123
+
124
+ include Google::Apis::Core::JsonObjectSupport
125
+ end
126
+
127
+ class GoogleCloudAssuredworkloadsVersioningV1mainWorkloadCjisSettings
128
+ class Representation < Google::Apis::Core::JsonRepresentation; end
129
+
130
+ include Google::Apis::Core::JsonObjectSupport
131
+ end
132
+
133
+ class GoogleCloudAssuredworkloadsVersioningV1mainWorkloadFedrampHighSettings
134
+ class Representation < Google::Apis::Core::JsonRepresentation; end
135
+
136
+ include Google::Apis::Core::JsonObjectSupport
137
+ end
138
+
139
+ class GoogleCloudAssuredworkloadsVersioningV1mainWorkloadFedrampModerateSettings
140
+ class Representation < Google::Apis::Core::JsonRepresentation; end
141
+
142
+ include Google::Apis::Core::JsonObjectSupport
143
+ end
144
+
145
+ class GoogleCloudAssuredworkloadsVersioningV1mainWorkloadIl4Settings
146
+ class Representation < Google::Apis::Core::JsonRepresentation; end
147
+
148
+ include Google::Apis::Core::JsonObjectSupport
149
+ end
150
+
151
+ class GoogleCloudAssuredworkloadsVersioningV1mainWorkloadKmsSettings
152
+ class Representation < Google::Apis::Core::JsonRepresentation; end
153
+
154
+ include Google::Apis::Core::JsonObjectSupport
155
+ end
156
+
157
+ class GoogleCloudAssuredworkloadsVersioningV1mainWorkloadResourceInfo
158
+ class Representation < Google::Apis::Core::JsonRepresentation; end
159
+
160
+ include Google::Apis::Core::JsonObjectSupport
161
+ end
162
+
163
+ class GoogleCloudAssuredworkloadsVersioningV1mainWorkloadResourceSettings
164
+ class Representation < Google::Apis::Core::JsonRepresentation; end
165
+
166
+ include Google::Apis::Core::JsonObjectSupport
167
+ end
168
+
115
169
  class GoogleLongrunningListOperationsResponse
116
170
  class Representation < Google::Apis::Core::JsonRepresentation; end
117
171
 
@@ -297,6 +351,103 @@ module Google
297
351
  end
298
352
  end
299
353
 
354
+ class GoogleCloudAssuredworkloadsVersioningV1mainCreateWorkloadOperationMetadata
355
+ # @private
356
+ class Representation < Google::Apis::Core::JsonRepresentation
357
+ property :compliance_regime, as: 'complianceRegime'
358
+ property :create_time, as: 'createTime'
359
+ property :display_name, as: 'displayName'
360
+ property :parent, as: 'parent'
361
+ collection :resource_settings, as: 'resourceSettings', class: Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsVersioningV1mainWorkloadResourceSettings, decorator: Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsVersioningV1mainWorkloadResourceSettings::Representation
362
+
363
+ end
364
+ end
365
+
366
+ class GoogleCloudAssuredworkloadsVersioningV1mainWorkload
367
+ # @private
368
+ class Representation < Google::Apis::Core::JsonRepresentation
369
+ property :billing_account, as: 'billingAccount'
370
+ property :cjis_settings, as: 'cjisSettings', class: Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsVersioningV1mainWorkloadCjisSettings, decorator: Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsVersioningV1mainWorkloadCjisSettings::Representation
371
+
372
+ property :compliance_regime, as: 'complianceRegime'
373
+ property :create_time, as: 'createTime'
374
+ property :display_name, as: 'displayName'
375
+ property :etag, as: 'etag'
376
+ property :fedramp_high_settings, as: 'fedrampHighSettings', class: Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsVersioningV1mainWorkloadFedrampHighSettings, decorator: Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsVersioningV1mainWorkloadFedrampHighSettings::Representation
377
+
378
+ property :fedramp_moderate_settings, as: 'fedrampModerateSettings', class: Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsVersioningV1mainWorkloadFedrampModerateSettings, decorator: Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsVersioningV1mainWorkloadFedrampModerateSettings::Representation
379
+
380
+ property :il4_settings, as: 'il4Settings', class: Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsVersioningV1mainWorkloadIl4Settings, decorator: Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsVersioningV1mainWorkloadIl4Settings::Representation
381
+
382
+ property :kms_settings, as: 'kmsSettings', class: Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsVersioningV1mainWorkloadKmsSettings, decorator: Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsVersioningV1mainWorkloadKmsSettings::Representation
383
+
384
+ hash :labels, as: 'labels'
385
+ property :name, as: 'name'
386
+ property :provisioned_resources_parent, as: 'provisionedResourcesParent'
387
+ collection :resource_settings, as: 'resourceSettings', class: Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsVersioningV1mainWorkloadResourceSettings, decorator: Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsVersioningV1mainWorkloadResourceSettings::Representation
388
+
389
+ collection :resources, as: 'resources', class: Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsVersioningV1mainWorkloadResourceInfo, decorator: Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsVersioningV1mainWorkloadResourceInfo::Representation
390
+
391
+ end
392
+ end
393
+
394
+ class GoogleCloudAssuredworkloadsVersioningV1mainWorkloadCjisSettings
395
+ # @private
396
+ class Representation < Google::Apis::Core::JsonRepresentation
397
+ property :kms_settings, as: 'kmsSettings', class: Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsVersioningV1mainWorkloadKmsSettings, decorator: Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsVersioningV1mainWorkloadKmsSettings::Representation
398
+
399
+ end
400
+ end
401
+
402
+ class GoogleCloudAssuredworkloadsVersioningV1mainWorkloadFedrampHighSettings
403
+ # @private
404
+ class Representation < Google::Apis::Core::JsonRepresentation
405
+ property :kms_settings, as: 'kmsSettings', class: Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsVersioningV1mainWorkloadKmsSettings, decorator: Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsVersioningV1mainWorkloadKmsSettings::Representation
406
+
407
+ end
408
+ end
409
+
410
+ class GoogleCloudAssuredworkloadsVersioningV1mainWorkloadFedrampModerateSettings
411
+ # @private
412
+ class Representation < Google::Apis::Core::JsonRepresentation
413
+ property :kms_settings, as: 'kmsSettings', class: Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsVersioningV1mainWorkloadKmsSettings, decorator: Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsVersioningV1mainWorkloadKmsSettings::Representation
414
+
415
+ end
416
+ end
417
+
418
+ class GoogleCloudAssuredworkloadsVersioningV1mainWorkloadIl4Settings
419
+ # @private
420
+ class Representation < Google::Apis::Core::JsonRepresentation
421
+ property :kms_settings, as: 'kmsSettings', class: Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsVersioningV1mainWorkloadKmsSettings, decorator: Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsVersioningV1mainWorkloadKmsSettings::Representation
422
+
423
+ end
424
+ end
425
+
426
+ class GoogleCloudAssuredworkloadsVersioningV1mainWorkloadKmsSettings
427
+ # @private
428
+ class Representation < Google::Apis::Core::JsonRepresentation
429
+ property :next_rotation_time, as: 'nextRotationTime'
430
+ property :rotation_period, as: 'rotationPeriod'
431
+ end
432
+ end
433
+
434
+ class GoogleCloudAssuredworkloadsVersioningV1mainWorkloadResourceInfo
435
+ # @private
436
+ class Representation < Google::Apis::Core::JsonRepresentation
437
+ property :resource_id, :numeric_string => true, as: 'resourceId'
438
+ property :resource_type, as: 'resourceType'
439
+ end
440
+ end
441
+
442
+ class GoogleCloudAssuredworkloadsVersioningV1mainWorkloadResourceSettings
443
+ # @private
444
+ class Representation < Google::Apis::Core::JsonRepresentation
445
+ property :display_name, as: 'displayName'
446
+ property :resource_id, as: 'resourceId'
447
+ property :resource_type, as: 'resourceType'
448
+ end
449
+ end
450
+
300
451
  class GoogleLongrunningListOperationsResponse
301
452
  # @private
302
453
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-assuredworkloads_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.0
4
+ version: 0.13.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: 2021-10-27 00:00:00.000000000 Z
11
+ date: 2021-12-06 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_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-assuredworkloads_v1/v0.12.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-assuredworkloads_v1/v0.13.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-assuredworkloads_v1
63
63
  post_install_message:
64
64
  rdoc_options: []