Skip to content
Navigation Menu
{{ message }}
-
Notifications
You must be signed in to change notification settings - Fork 458
Expand file tree
/
Copy pathConnection.php
More file actions
844 lines (754 loc) · 29.3 KB
/
Copy pathConnection.php
File metadata and controls
844 lines (754 loc) · 29.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
<?php
# Generated by the protocol buffer compiler. DO NOT EDIT!
# source: google/cloud/developerconnect/v1/developer_connect.proto
namespace Google\Cloud\DeveloperConnect\V1;
use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\GPBUtil;
use Google\Protobuf\RepeatedField;
/**
* Message describing Connection object
*
* Generated from protobuf message <code>google.cloud.developerconnect.v1.Connection</code>
*/
class Connection extends \Google\Protobuf\Internal\Message
{
/**
* Identifier. The resource name of the connection, in the format
* `projects/{project}/locations/{location}/connections/{connection_id}`.
*
* Generated from protobuf field <code>string name = 1 [(.google.api.field_behavior) = IDENTIFIER];</code>
*/
protected $name = '';
/**
* Output only. [Output only] Create timestamp
*
* Generated from protobuf field <code>.google.protobuf.Timestamp create_time = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
*/
protected $create_time = null;
/**
* Output only. [Output only] Update timestamp
*
* Generated from protobuf field <code>.google.protobuf.Timestamp update_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
*/
protected $update_time = null;
/**
* Output only. [Output only] Delete timestamp
*
* Generated from protobuf field <code>.google.protobuf.Timestamp delete_time = 11 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
*/
protected $delete_time = null;
/**
* Optional. Labels as key value pairs
*
* Generated from protobuf field <code>map<string, string> labels = 4 [(.google.api.field_behavior) = OPTIONAL];</code>
*/
private $labels;
/**
* Output only. Installation state of the Connection.
*
* Generated from protobuf field <code>.google.cloud.developerconnect.v1.InstallationState installation_state = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
*/
protected $installation_state = null;
/**
* Optional. If disabled is set to true, functionality is disabled for this
* connection. Repository based API methods and webhooks processing for
* repositories in this connection will be disabled.
*
* Generated from protobuf field <code>bool disabled = 7 [(.google.api.field_behavior) = OPTIONAL];</code>
*/
protected $disabled = false;
/**
* Output only. Set to true when the connection is being set up or updated in
* the background.
*
* Generated from protobuf field <code>bool reconciling = 8 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
*/
protected $reconciling = false;
/**
* Optional. Allows clients to store small amounts of arbitrary data.
*
* Generated from protobuf field <code>map<string, string> annotations = 9 [(.google.api.field_behavior) = OPTIONAL];</code>
*/
private $annotations;
/**
* Optional. This checksum is computed by the server based on the value of
* other fields, and may be sent on update and delete requests to ensure the
* client has an up-to-date value before proceeding.
*
* Generated from protobuf field <code>string etag = 10 [(.google.api.field_behavior) = OPTIONAL];</code>
*/
protected $etag = '';
/**
* Output only. A system-assigned unique identifier for the Connection.
*
* Generated from protobuf field <code>string uid = 12 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.field_info) = {</code>
*/
protected $uid = '';
/**
* Optional. The crypto key configuration. This field is used by the
* Customer-Managed Encryption Keys (CMEK) feature.
*
* Generated from protobuf field <code>.google.cloud.developerconnect.v1.CryptoKeyConfig crypto_key_config = 15 [(.google.api.field_behavior) = OPTIONAL];</code>
*/
protected $crypto_key_config = null;
/**
* Optional. Configuration for the git proxy feature. Enabling the git proxy
* allows clients to perform git operations on the repositories linked in the
* connection.
*
* Generated from protobuf field <code>.google.cloud.developerconnect.v1.GitProxyConfig git_proxy_config = 19 [(.google.api.field_behavior) = OPTIONAL];</code>
*/
protected $git_proxy_config = null;
protected $connection_config;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type \Google\Cloud\DeveloperConnect\V1\GitHubConfig $github_config
* Configuration for connections to github.com.
* @type \Google\Cloud\DeveloperConnect\V1\GitHubEnterpriseConfig $github_enterprise_config
* Configuration for connections to an instance of GitHub Enterprise.
* @type \Google\Cloud\DeveloperConnect\V1\GitLabConfig $gitlab_config
* Configuration for connections to gitlab.com.
* @type \Google\Cloud\DeveloperConnect\V1\GitLabEnterpriseConfig $gitlab_enterprise_config
* Configuration for connections to an instance of GitLab Enterprise.
* @type \Google\Cloud\DeveloperConnect\V1\BitbucketDataCenterConfig $bitbucket_data_center_config
* Configuration for connections to an instance of Bitbucket Data Center.
* @type \Google\Cloud\DeveloperConnect\V1\BitbucketCloudConfig $bitbucket_cloud_config
* Configuration for connections to an instance of Bitbucket Clouds.
* @type \Google\Cloud\DeveloperConnect\V1\SecureSourceManagerInstanceConfig $secure_source_manager_instance_config
* Configuration for connections to an instance of Secure Source Manager.
* @type \Google\Cloud\DeveloperConnect\V1\GenericHTTPEndpointConfig $http_config
* Optional. Configuration for connections to an HTTP service provider.
* @type string $name
* Identifier. The resource name of the connection, in the format
* `projects/{project}/locations/{location}/connections/{connection_id}`.
* @type \Google\Protobuf\Timestamp $create_time
* Output only. [Output only] Create timestamp
* @type \Google\Protobuf\Timestamp $update_time
* Output only. [Output only] Update timestamp
* @type \Google\Protobuf\Timestamp $delete_time
* Output only. [Output only] Delete timestamp
* @type array|\Google\Protobuf\Internal\MapField $labels
* Optional. Labels as key value pairs
* @type \Google\Cloud\DeveloperConnect\V1\InstallationState $installation_state
* Output only. Installation state of the Connection.
* @type bool $disabled
* Optional. If disabled is set to true, functionality is disabled for this
* connection. Repository based API methods and webhooks processing for
* repositories in this connection will be disabled.
* @type bool $reconciling
* Output only. Set to true when the connection is being set up or updated in
* the background.
* @type array|\Google\Protobuf\Internal\MapField $annotations
* Optional. Allows clients to store small amounts of arbitrary data.
* @type string $etag
* Optional. This checksum is computed by the server based on the value of
* other fields, and may be sent on update and delete requests to ensure the
* client has an up-to-date value before proceeding.
* @type string $uid
* Output only. A system-assigned unique identifier for the Connection.
* @type \Google\Cloud\DeveloperConnect\V1\CryptoKeyConfig $crypto_key_config
* Optional. The crypto key configuration. This field is used by the
* Customer-Managed Encryption Keys (CMEK) feature.
* @type \Google\Cloud\DeveloperConnect\V1\GitProxyConfig $git_proxy_config
* Optional. Configuration for the git proxy feature. Enabling the git proxy
* allows clients to perform git operations on the repositories linked in the
* connection.
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Google\Cloud\Developerconnect\V1\DeveloperConnect::initOnce();
parent::__construct($data);
}
/**
* Configuration for connections to github.com.
*
* Generated from protobuf field <code>.google.cloud.developerconnect.v1.GitHubConfig github_config = 5;</code>
* @return \Google\Cloud\DeveloperConnect\V1\GitHubConfig|null
*/
public function getGithubConfig()
{
return $this->readOneof(5);
}
public function hasGithubConfig()
{
return $this->hasOneof(5);
}
/**
* Configuration for connections to github.com.
*
* Generated from protobuf field <code>.google.cloud.developerconnect.v1.GitHubConfig github_config = 5;</code>
* @param \Google\Cloud\DeveloperConnect\V1\GitHubConfig $var
* @return $this
*/
public function setGithubConfig($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\DeveloperConnect\V1\GitHubConfig::class);
$this->writeOneof(5, $var);
return $this;
}
/**
* Configuration for connections to an instance of GitHub Enterprise.
*
* Generated from protobuf field <code>.google.cloud.developerconnect.v1.GitHubEnterpriseConfig github_enterprise_config = 13;</code>
* @return \Google\Cloud\DeveloperConnect\V1\GitHubEnterpriseConfig|null
*/
public function getGithubEnterpriseConfig()
{
return $this->readOneof(13);
}
public function hasGithubEnterpriseConfig()
{
return $this->hasOneof(13);
}
/**
* Configuration for connections to an instance of GitHub Enterprise.
*
* Generated from protobuf field <code>.google.cloud.developerconnect.v1.GitHubEnterpriseConfig github_enterprise_config = 13;</code>
* @param \Google\Cloud\DeveloperConnect\V1\GitHubEnterpriseConfig $var
* @return $this
*/
public function setGithubEnterpriseConfig($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\DeveloperConnect\V1\GitHubEnterpriseConfig::class);
$this->writeOneof(13, $var);
return $this;
}
/**
* Configuration for connections to gitlab.com.
*
* Generated from protobuf field <code>.google.cloud.developerconnect.v1.GitLabConfig gitlab_config = 14;</code>
* @return \Google\Cloud\DeveloperConnect\V1\GitLabConfig|null
*/
public function getGitlabConfig()
{
return $this->readOneof(14);
}
public function hasGitlabConfig()
{
return $this->hasOneof(14);
}
/**
* Configuration for connections to gitlab.com.
*
* Generated from protobuf field <code>.google.cloud.developerconnect.v1.GitLabConfig gitlab_config = 14;</code>
* @param \Google\Cloud\DeveloperConnect\V1\GitLabConfig $var
* @return $this
*/
public function setGitlabConfig($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\DeveloperConnect\V1\GitLabConfig::class);
$this->writeOneof(14, $var);
return $this;
}
/**
* Configuration for connections to an instance of GitLab Enterprise.
*
* Generated from protobuf field <code>.google.cloud.developerconnect.v1.GitLabEnterpriseConfig gitlab_enterprise_config = 16;</code>
* @return \Google\Cloud\DeveloperConnect\V1\GitLabEnterpriseConfig|null
*/
public function getGitlabEnterpriseConfig()
{
return $this->readOneof(16);
}
public function hasGitlabEnterpriseConfig()
{
return $this->hasOneof(16);
}
/**
* Configuration for connections to an instance of GitLab Enterprise.
*
* Generated from protobuf field <code>.google.cloud.developerconnect.v1.GitLabEnterpriseConfig gitlab_enterprise_config = 16;</code>
* @param \Google\Cloud\DeveloperConnect\V1\GitLabEnterpriseConfig $var
* @return $this
*/
public function setGitlabEnterpriseConfig($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\DeveloperConnect\V1\GitLabEnterpriseConfig::class);
$this->writeOneof(16, $var);
return $this;
}
/**
* Configuration for connections to an instance of Bitbucket Data Center.
*
* Generated from protobuf field <code>.google.cloud.developerconnect.v1.BitbucketDataCenterConfig bitbucket_data_center_config = 17;</code>
* @return \Google\Cloud\DeveloperConnect\V1\BitbucketDataCenterConfig|null
*/
public function getBitbucketDataCenterConfig()
{
return $this->readOneof(17);
}
public function hasBitbucketDataCenterConfig()
{
return $this->hasOneof(17);
}
/**
* Configuration for connections to an instance of Bitbucket Data Center.
*
* Generated from protobuf field <code>.google.cloud.developerconnect.v1.BitbucketDataCenterConfig bitbucket_data_center_config = 17;</code>
* @param \Google\Cloud\DeveloperConnect\V1\BitbucketDataCenterConfig $var
* @return $this
*/
public function setBitbucketDataCenterConfig($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\DeveloperConnect\V1\BitbucketDataCenterConfig::class);
$this->writeOneof(17, $var);
return $this;
}
/**
* Configuration for connections to an instance of Bitbucket Clouds.
*
* Generated from protobuf field <code>.google.cloud.developerconnect.v1.BitbucketCloudConfig bitbucket_cloud_config = 18;</code>
* @return \Google\Cloud\DeveloperConnect\V1\BitbucketCloudConfig|null
*/
public function getBitbucketCloudConfig()
{
return $this->readOneof(18);
}
public function hasBitbucketCloudConfig()
{
return $this->hasOneof(18);
}
/**
* Configuration for connections to an instance of Bitbucket Clouds.
*
* Generated from protobuf field <code>.google.cloud.developerconnect.v1.BitbucketCloudConfig bitbucket_cloud_config = 18;</code>
* @param \Google\Cloud\DeveloperConnect\V1\BitbucketCloudConfig $var
* @return $this
*/
public function setBitbucketCloudConfig($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\DeveloperConnect\V1\BitbucketCloudConfig::class);
$this->writeOneof(18, $var);
return $this;
}
/**
* Configuration for connections to an instance of Secure Source Manager.
*
* Generated from protobuf field <code>.google.cloud.developerconnect.v1.SecureSourceManagerInstanceConfig secure_source_manager_instance_config = 20;</code>
* @return \Google\Cloud\DeveloperConnect\V1\SecureSourceManagerInstanceConfig|null
*/
public function getSecureSourceManagerInstanceConfig()
{
return $this->readOneof(20);
}
public function hasSecureSourceManagerInstanceConfig()
{
return $this->hasOneof(20);
}
/**
* Configuration for connections to an instance of Secure Source Manager.
*
* Generated from protobuf field <code>.google.cloud.developerconnect.v1.SecureSourceManagerInstanceConfig secure_source_manager_instance_config = 20;</code>
* @param \Google\Cloud\DeveloperConnect\V1\SecureSourceManagerInstanceConfig $var
* @return $this
*/
public function setSecureSourceManagerInstanceConfig($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\DeveloperConnect\V1\SecureSourceManagerInstanceConfig::class);
$this->writeOneof(20, $var);
return $this;
}
/**
* Optional. Configuration for connections to an HTTP service provider.
*
* Generated from protobuf field <code>.google.cloud.developerconnect.v1.GenericHTTPEndpointConfig http_config = 21 [(.google.api.field_behavior) = OPTIONAL];</code>
* @return \Google\Cloud\DeveloperConnect\V1\GenericHTTPEndpointConfig|null
*/
public function getHttpConfig()
{
return $this->readOneof(21);
}
public function hasHttpConfig()
{
return $this->hasOneof(21);
}
/**
* Optional. Configuration for connections to an HTTP service provider.
*
* Generated from protobuf field <code>.google.cloud.developerconnect.v1.GenericHTTPEndpointConfig http_config = 21 [(.google.api.field_behavior) = OPTIONAL];</code>
* @param \Google\Cloud\DeveloperConnect\V1\GenericHTTPEndpointConfig $var
* @return $this
*/
public function setHttpConfig($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\DeveloperConnect\V1\GenericHTTPEndpointConfig::class);
$this->writeOneof(21, $var);
return $this;
}
/**
* Identifier. The resource name of the connection, in the format
* `projects/{project}/locations/{location}/connections/{connection_id}`.
*
* Generated from protobuf field <code>string name = 1 [(.google.api.field_behavior) = IDENTIFIER];</code>
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* Identifier. The resource name of the connection, in the format
* `projects/{project}/locations/{location}/connections/{connection_id}`.
*
* Generated from protobuf field <code>string name = 1 [(.google.api.field_behavior) = IDENTIFIER];</code>
* @param string $var
* @return $this
*/
public function setName($var)
{
GPBUtil::checkString($var, True);
$this->name = $var;
return $this;
}
/**
* Output only. [Output only] Create timestamp
*
* Generated from protobuf field <code>.google.protobuf.Timestamp create_time = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
* @return \Google\Protobuf\Timestamp|null
*/
public function getCreateTime()
{
return $this->create_time;
}
public function hasCreateTime()
{
return isset($this->create_time);
}
public function clearCreateTime()
{
unset($this->create_time);
}
/**
* Output only. [Output only] Create timestamp
*
* Generated from protobuf field <code>.google.protobuf.Timestamp create_time = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
* @param \Google\Protobuf\Timestamp $var
* @return $this
*/
public function setCreateTime($var)
{
GPBUtil::checkMessage($var, \Google\Protobuf\Timestamp::class);
$this->create_time = $var;
return $this;
}
/**
* Output only. [Output only] Update timestamp
*
* Generated from protobuf field <code>.google.protobuf.Timestamp update_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
* @return \Google\Protobuf\Timestamp|null
*/
public function getUpdateTime()
{
return $this->update_time;
}
public function hasUpdateTime()
{
return isset($this->update_time);
}
public function clearUpdateTime()
{
unset($this->update_time);
}
/**
* Output only. [Output only] Update timestamp
*
* Generated from protobuf field <code>.google.protobuf.Timestamp update_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
* @param \Google\Protobuf\Timestamp $var
* @return $this
*/
public function setUpdateTime($var)
{
GPBUtil::checkMessage($var, \Google\Protobuf\Timestamp::class);
$this->update_time = $var;
return $this;
}
/**
* Output only. [Output only] Delete timestamp
*
* Generated from protobuf field <code>.google.protobuf.Timestamp delete_time = 11 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
* @return \Google\Protobuf\Timestamp|null
*/
public function getDeleteTime()
{
return $this->delete_time;
}
public function hasDeleteTime()
{
return isset($this->delete_time);
}
public function clearDeleteTime()
{
unset($this->delete_time);
}
/**
* Output only. [Output only] Delete timestamp
*
* Generated from protobuf field <code>.google.protobuf.Timestamp delete_time = 11 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
* @param \Google\Protobuf\Timestamp $var
* @return $this
*/
public function setDeleteTime($var)
{
GPBUtil::checkMessage($var, \Google\Protobuf\Timestamp::class);
$this->delete_time = $var;
return $this;
}
/**
* Optional. Labels as key value pairs
*
* Generated from protobuf field <code>map<string, string> labels = 4 [(.google.api.field_behavior) = OPTIONAL];</code>
* @return \Google\Protobuf\Internal\MapField
*/
public function getLabels()
{
return $this->labels;
}
/**
* Optional. Labels as key value pairs
*
* Generated from protobuf field <code>map<string, string> labels = 4 [(.google.api.field_behavior) = OPTIONAL];</code>
* @param array|\Google\Protobuf\Internal\MapField $var
* @return $this
*/
public function setLabels($var)
{
$arr = GPBUtil::checkMapField($var, \Google\Protobuf\Internal\GPBType::STRING, \Google\Protobuf\Internal\GPBType::STRING);
$this->labels = $arr;
return $this;
}
/**
* Output only. Installation state of the Connection.
*
* Generated from protobuf field <code>.google.cloud.developerconnect.v1.InstallationState installation_state = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
* @return \Google\Cloud\DeveloperConnect\V1\InstallationState|null
*/
public function getInstallationState()
{
return $this->installation_state;
}
public function hasInstallationState()
{
return isset($this->installation_state);
}
public function clearInstallationState()
{
unset($this->installation_state);
}
/**
* Output only. Installation state of the Connection.
*
* Generated from protobuf field <code>.google.cloud.developerconnect.v1.InstallationState installation_state = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
* @param \Google\Cloud\DeveloperConnect\V1\InstallationState $var
* @return $this
*/
public function setInstallationState($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\DeveloperConnect\V1\InstallationState::class);
$this->installation_state = $var;
return $this;
}
/**
* Optional. If disabled is set to true, functionality is disabled for this
* connection. Repository based API methods and webhooks processing for
* repositories in this connection will be disabled.
*
* Generated from protobuf field <code>bool disabled = 7 [(.google.api.field_behavior) = OPTIONAL];</code>
* @return bool
*/
public function getDisabled()
{
return $this->disabled;
}
/**
* Optional. If disabled is set to true, functionality is disabled for this
* connection. Repository based API methods and webhooks processing for
* repositories in this connection will be disabled.
*
* Generated from protobuf field <code>bool disabled = 7 [(.google.api.field_behavior) = OPTIONAL];</code>
* @param bool $var
* @return $this
*/
public function setDisabled($var)
{
GPBUtil::checkBool($var);
$this->disabled = $var;
return $this;
}
/**
* Output only. Set to true when the connection is being set up or updated in
* the background.
*
* Generated from protobuf field <code>bool reconciling = 8 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
* @return bool
*/
public function getReconciling()
{
return $this->reconciling;
}
/**
* Output only. Set to true when the connection is being set up or updated in
* the background.
*
* Generated from protobuf field <code>bool reconciling = 8 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
* @param bool $var
* @return $this
*/
public function setReconciling($var)
{
GPBUtil::checkBool($var);
$this->reconciling = $var;
return $this;
}
/**
* Optional. Allows clients to store small amounts of arbitrary data.
*
* Generated from protobuf field <code>map<string, string> annotations = 9 [(.google.api.field_behavior) = OPTIONAL];</code>
* @return \Google\Protobuf\Internal\MapField
*/
public function getAnnotations()
{
return $this->annotations;
}
/**
* Optional. Allows clients to store small amounts of arbitrary data.
*
* Generated from protobuf field <code>map<string, string> annotations = 9 [(.google.api.field_behavior) = OPTIONAL];</code>
* @param array|\Google\Protobuf\Internal\MapField $var
* @return $this
*/
public function setAnnotations($var)
{
$arr = GPBUtil::checkMapField($var, \Google\Protobuf\Internal\GPBType::STRING, \Google\Protobuf\Internal\GPBType::STRING);
$this->annotations = $arr;
return $this;
}
/**
* Optional. This checksum is computed by the server based on the value of
* other fields, and may be sent on update and delete requests to ensure the
* client has an up-to-date value before proceeding.
*
* Generated from protobuf field <code>string etag = 10 [(.google.api.field_behavior) = OPTIONAL];</code>
* @return string
*/
public function getEtag()
{
return $this->etag;
}
/**
* Optional. This checksum is computed by the server based on the value of
* other fields, and may be sent on update and delete requests to ensure the
* client has an up-to-date value before proceeding.
*
* Generated from protobuf field <code>string etag = 10 [(.google.api.field_behavior) = OPTIONAL];</code>
* @param string $var
* @return $this
*/
public function setEtag($var)
{
GPBUtil::checkString($var, True);
$this->etag = $var;
return $this;
}
/**
* Output only. A system-assigned unique identifier for the Connection.
*
* Generated from protobuf field <code>string uid = 12 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.field_info) = {</code>
* @return string
*/
public function getUid()
{
return $this->uid;
}
/**
* Output only. A system-assigned unique identifier for the Connection.
*
* Generated from protobuf field <code>string uid = 12 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.field_info) = {</code>
* @param string $var
* @return $this
*/
public function setUid($var)
{
GPBUtil::checkString($var, True);
$this->uid = $var;
return $this;
}
/**
* Optional. The crypto key configuration. This field is used by the
* Customer-Managed Encryption Keys (CMEK) feature.
*
* Generated from protobuf field <code>.google.cloud.developerconnect.v1.CryptoKeyConfig crypto_key_config = 15 [(.google.api.field_behavior) = OPTIONAL];</code>
* @return \Google\Cloud\DeveloperConnect\V1\CryptoKeyConfig|null
*/
public function getCryptoKeyConfig()
{
return $this->crypto_key_config;
}
public function hasCryptoKeyConfig()
{
return isset($this->crypto_key_config);
}
public function clearCryptoKeyConfig()
{
unset($this->crypto_key_config);
}
/**
* Optional. The crypto key configuration. This field is used by the
* Customer-Managed Encryption Keys (CMEK) feature.
*
* Generated from protobuf field <code>.google.cloud.developerconnect.v1.CryptoKeyConfig crypto_key_config = 15 [(.google.api.field_behavior) = OPTIONAL];</code>
* @param \Google\Cloud\DeveloperConnect\V1\CryptoKeyConfig $var
* @return $this
*/
public function setCryptoKeyConfig($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\DeveloperConnect\V1\CryptoKeyConfig::class);
$this->crypto_key_config = $var;
return $this;
}
/**
* Optional. Configuration for the git proxy feature. Enabling the git proxy
* allows clients to perform git operations on the repositories linked in the
* connection.
*
* Generated from protobuf field <code>.google.cloud.developerconnect.v1.GitProxyConfig git_proxy_config = 19 [(.google.api.field_behavior) = OPTIONAL];</code>
* @return \Google\Cloud\DeveloperConnect\V1\GitProxyConfig|null
*/
public function getGitProxyConfig()
{
return $this->git_proxy_config;
}
public function hasGitProxyConfig()
{
return isset($this->git_proxy_config);
}
public function clearGitProxyConfig()
{
unset($this->git_proxy_config);
}
/**
* Optional. Configuration for the git proxy feature. Enabling the git proxy
* allows clients to perform git operations on the repositories linked in the
* connection.
*
* Generated from protobuf field <code>.google.cloud.developerconnect.v1.GitProxyConfig git_proxy_config = 19 [(.google.api.field_behavior) = OPTIONAL];</code>
* @param \Google\Cloud\DeveloperConnect\V1\GitProxyConfig $var
* @return $this
*/
public function setGitProxyConfig($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\DeveloperConnect\V1\GitProxyConfig::class);
$this->git_proxy_config = $var;
return $this;
}
/**
* @return string
*/
public function getConnectionConfig()
{
return $this->whichOneof("connection_config");
}
}
You can’t perform that action at this time.
